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 IskolaorResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string IdpEgyediAzonosito { get; set; }
|
|
public string Nev { get; set; }
|
|
public int FeladatEllatasiHelyId { get; set; }
|
|
public string FeladatEllatasiHely { get; set; }
|
|
public string EmailCim { get; set; }
|
|
public string Telefonszam { get; set; }
|
|
public string IntezmenyAzonosito { get; set; }
|
|
|
|
public static implicit operator IskolaorResponse(IskolaorResponseCo co) => new IskolaorResponse
|
|
{
|
|
Id = co.Id,
|
|
IdpEgyediAzonosito = co.IdpEgyediAzonosito,
|
|
Nev = co.Nev,
|
|
FeladatEllatasiHelyId = co.FeladatEllatasiHelyId,
|
|
FeladatEllatasiHely = co.FeladatEllatasiHely,
|
|
EmailCim = co.EmailCim,
|
|
Telefonszam = co.Telefonszam,
|
|
IntezmenyAzonosito = co.IntezmenyAzonosito
|
|
};
|
|
}
|
|
}
|