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,29 @@
using System;
namespace Kreta.BusinessLogic.HelperClasses
{
public class TanevrendCO
{
public int? ID { get; set; }
public int Tanev { get; set; }
public int IntezmenyId { get; set; }
public string TanevNeve { get; set; }
public DateTime Datum { get; set; }
public int? Nap { get; set; }
public int? NapTip { get; set; }
public bool OrarendiNap { get; set; }
public int? Hetirend { get; set; }
public string Megjegyzes { get; set; }
public bool isAktiv { get; set; }
public bool OsszesCsop { get; set; }
public string Csoportok { get; set; }
public int? CsengetesiRend { get; set; }
public bool IsEgyediNap { get; set; }
public bool UresOrarend { get; set; }
public DateTime? ElteroOrarendSzerintiTanitasNapDatum { get; set; }
public bool IsElteroNapModosithato { get; set; }
public bool IsGlobal { get; set; }
public string NapTipusNev { get; set; }
public string HetNapjaNev { get; set; }
}
}