This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
namespace Kreta.Eugyintezes.Domain.Model.Dto
{
public class TeremAdatokDto
{
public int KretaAzonosito { get; set; }
public int Ar { get; set; }
public CimDto Cim { get; set; }
public DateTime? FoglalhatoIdoszakKezdete { get; set; }
public DateTime? FoglalhatoIdoszakVege { get; set; }
public byte[] Foto { get; set; }
public byte[] SzerzodesMelleklet { get; set; }
public string IntezmenyOmAzonosito { get; set; }
public string Leiras { get; set; }
public int Letszam { get; set; }
public string Megnevezes { get; set; }
public int Terulet { get; set; }
public AdatszotarDto Tipus { get; set; }
public List<TeremElerhetosegDto> NapiElerhetosegek { get; set; }
public string KretaEgyediAzonosito { get; set; }
public AdatszotarDto TulajdonTipusa { get; set; }
public int EmeltAr { get; set; }
public TimeSpan? EmeltArKezdeteOraPerc { get; set; }
public string FunkcioTeruletSAPKod { get; set; }
}
}