46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|