29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Get.Tanar;
|
|
|
|
namespace Kreta.Naplo.Domain.V2.Model.Get.Tanar
|
|
{
|
|
public class ProfilResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string Nev { get; set; }
|
|
public string Kep { get; set; }
|
|
public int FeladatEllatasiHelyId { get; set; }
|
|
public string FeladatEllatasiHely { get; set; }
|
|
public string PublikusEmailCim { get; set; }
|
|
public string MunkahelyiEmailCim { get; set; }
|
|
public string PublikusTelefonszam { get; set; }
|
|
|
|
public static implicit operator ProfilResponse(ProfilResponseCo co) => new ProfilResponse
|
|
{
|
|
Id = co.Id,
|
|
Nev = co.Nev,
|
|
Kep = co.Kep,
|
|
FeladatEllatasiHelyId = co.FeladatEllatasiHelyId,
|
|
FeladatEllatasiHely = co.FeladatEllatasiHely,
|
|
PublikusEmailCim = co.PublikusEmailCim,
|
|
MunkahelyiEmailCim = co.MunkahelyiEmailCim,
|
|
PublikusTelefonszam = co.PublikusTelefonszam
|
|
};
|
|
}
|
|
}
|