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

29 lines
1.1 KiB
C#

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; }
}
}