22 lines
803 B
C#
22 lines
803 B
C#
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; }
|
|
}
|
|
}
|