19 lines
614 B
C#
19 lines
614 B
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class OralatogatasokCO
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public int Ora { get; set; }
|
|
public string Latogato { get; set; }
|
|
public int LatogatoID { get; set; }
|
|
public string Beosztas { get; set; }
|
|
public string LatogatottPedagogus { get; set; }
|
|
public string Tantargy { get; set; }
|
|
public string OsztalyCsoport { get; set; }
|
|
public string Megjegyzes { get; set; }
|
|
public bool NemKotottMunkaidos { get; set; }
|
|
}
|
|
}
|