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,36 @@
using System;
using System.Collections.Generic;
namespace Kreta.BusinessLogic.HelperClasses
{
public class FogadooraCo
{
public int? Id { get; set; }
public List<int> SelectedOsztalyCsoportIdList { get; set; }
public Dictionary<int, bool> ModifiedOsztalyCsoportList { get; set; }
public DateTime FogadoOraDatuma { get; set; }
public DateTime FogadoOraKezdete { get; set; }
public DateTime FogadoOraVege { get; set; }
public int TeremId { get; set; }
public string TeremNev { get; set; }
public int Rendszeresseg { get; set; }
public bool IsNemKotottMunkaido { get; set; }
public bool JelentkezesekKezelese { get; set; }
public int FogadooraTipusEnumId { get; set; }
public int EgysegnyiIdopontok { get; set; }
public bool? IsIdosavraOsztas { get; set; }
public int? NemkotottMunkaidoId { get; set; }
public int TanarId { get; set; }
public DateTime? RendszeresFogadooraElsoDatuma { get; set; }
public DateTime? RendszeresFogadooraUtolsoDatuma { get; set; }
public bool IsEgyalkalomModositasa { get; set; } = false;
public int GroupId { get; set; }
public bool IsFaliujsagonMegjelenjen { get; set; }
public DateTime? FaliujsagErvenyessegKezdete { get; set; }
public DateTime? FaliujsagErvenyessegVege { get; set; }
public List<DateTime> FogadooraDatumList { get; set; }
public int FaliujsagId { get; set; }
public int ModositasiIdoszakTipus { get; set; }
public int? JelentkezesHatarideje { get; set; }
}
}