16 lines
509 B
C#
16 lines
509 B
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class ElozoOraAdataiCO
|
|
{
|
|
public string ElozoOraAdatai { get; set; }
|
|
public DateTime? ElozoOraDatuma { get; set; }
|
|
public string ElozoOraTemaja { get; set; }
|
|
public string ElozoOraEvesSorszama { get; set; }
|
|
public int TantargyId { get; set; }
|
|
public int OsztalyCsoportId { get; set; }
|
|
public int TanarId { get; set; }
|
|
public DateTime OraKezdete { get; set; }
|
|
}
|
|
}
|