kreta/Kreta.BusinessLogic/HelperClasses/AdatszotarCO.cs
2024-03-13 00:33:46 +01:00

34 lines
1.3 KiB
C#

using System.Collections.Generic;
namespace Kreta.BusinessLogic.HelperClasses
{
public class AdatszotarCO
{
public int? ID { get; set; }
public string AdatszotarTipus { get; set; }
public int AdatszotarTipusId { get; set; }
public string Megnevezes { get; set; }
public int? Sorszam { get; set; }
public bool? Lathato { get; set; }
public string Megnevezes1 { get; set; }
public string Megnevezes2 { get; set; }
public string Megnevezes3 { get; set; }
public string Megnevezes4 { get; set; }
public string Color { get; set; }
public bool IsBold { get; set; }
public int Suly { get; set; }
public bool Protected { get; set; }
public bool IsSorszamozando { get; set; }
public bool IsTanorai { get; set; }
public bool IsTanorankivuli { get; set; }
public bool IsLeNemKotottMunkaido { get; set; }
public bool IsNaplobanMegjelenik { get; set; }
public bool IsTorzslaponMegjelenik { get; set; }
public bool IsBizonyitvanybanMegjelenik { get; set; }
public List<AdatszotarZaradekNyelvCo> ZaradekSzovegCoList { get; set; }
public List<AdatszotarZaradekNyelvCo> OldZaradekSzovegCoList { get; set; }
}
}