init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user