16 lines
554 B
C#
16 lines
554 B
C#
using System;
|
|
|
|
namespace Kreta.Eugyintezes.Domain.Model.Dto
|
|
{
|
|
public class IgazolasDto
|
|
{
|
|
public string KretaIntezmenyAzonosito { get; set; }
|
|
public int AlkalmazottKretaAzonosito { get; set; }
|
|
public string Ugyiratszam { get; set; }
|
|
public string TanuloOktatasiAzonosito { get; set; }
|
|
public DateTime IgazolasElsoNapja { get; set; }
|
|
public DateTime IgazolasUtolsoNapja { get; set; }
|
|
public string IgazolasSzovege { get; set; }
|
|
public string IgazolasTipusKod { get; set; }
|
|
}
|
|
}
|