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,20 @@
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; }
}
}