kreta/Kreta.Client/KGR/Model/IntezmenyiBeszerzesAdatszotarAllapotModel.cs
2024-03-13 00:33:46 +01:00

20 lines
715 B
C#

namespace Kreta.Client.KGR.Model
{
public class IntezmenyiBeszerzesAdatszotarAllapotModel
{
public int Id { get; set; }
public string Nev { get; set; }
public int Sorszam { get; set; }
public int KategoriaId { get; set; }
public string SzinKod { get; set; }
public bool Aktiv { get; set; }
public bool Modosithato { get; set; }
public bool Torolheto { get; set; }
public bool Lathato { get; set; }
public string RovidNev { get; set; }
public string AliasNev { get; set; }
public string Leiras { get; set; }
public string Megjegyzes { get; set; }
public string MimeTipus { get; set; }
}
}