This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
@@ -0,0 +1,34 @@
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; }
}
}