25 lines
575 B
C#
25 lines
575 B
C#
using System;
|
|
|
|
namespace Kreta.Naplo.Domain.V3.Tanar
|
|
{
|
|
public class ProfilResponse
|
|
{
|
|
public Guid Uid { get; set; }
|
|
|
|
public string Nev { get; set; }
|
|
|
|
public string IntezmenyNev { get; set; }
|
|
|
|
public int FeladatEllatasiHelyId { get; set; }
|
|
|
|
public string FeladatEllatasiHelyNev { get; set; }
|
|
|
|
public string PublikusEmailCim { get; set; }
|
|
|
|
public string PublikusTelefonszam { get; set; }
|
|
|
|
public string MunkahelyiEmailCim { get; set; }
|
|
|
|
public string MunkahelyiTelefonszam { get; set; }
|
|
}
|
|
}
|