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,22 @@
using System;
namespace Kreta.BusinessLogic.HelperClasses
{
public class HelyettesitesCO
{
public string HelyettesitoNev { get; set; }
public string HelyettesitoEmail { get; set; }
public string TantargyNev { get; set; }
public string OsztalyCsoportNev { get; set; }
public string OraDatuma { get; set; }
public string OraKezdete { get; set; }
public string OraVege { get; set; }
public int OraSzama { get; set; }
public bool IsNapirend { get; set; }
public string TeremNev { get; set; }
public string HelyettesitesTipusa { get; set; }
public string HelyettesitettNev { get; set; }
public int HelyettesitoID { get; set; }
public Guid? HelyettesitoEmailGuid { get; set; }
}
}