29 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|