62 lines
1.5 KiB
C#
62 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Kreta.Naplo.Domain.V3.Csatolmany;
|
|
using Kreta.Naplo.Domain.V3.UniqueIdentifier;
|
|
|
|
namespace Kreta.Naplo.Domain.V3.Orarend
|
|
{
|
|
public class OrarendElemResponse
|
|
{
|
|
public OrarendElemUid Uid { get; set; }
|
|
|
|
public string Nev { get; set; }
|
|
|
|
public bool HasOrarendiOra { get; set; }
|
|
|
|
public int OsztalyCsoportId { get; set; }
|
|
|
|
public string OsztalyCsoportNev { get; set; }
|
|
|
|
public int TantargyId { get; set; }
|
|
|
|
public string TantargyNev { get; set; }
|
|
|
|
public string Terem { get; set; }
|
|
|
|
public DateTime Kezdete { get; set; }
|
|
|
|
public DateTime Vege { get; set; }
|
|
|
|
public string Tema { get; set; }
|
|
|
|
public int? Oraszam { get; set; }
|
|
|
|
public int Allapot { get; set; }
|
|
|
|
public Guid TanarUid { get; set; }
|
|
|
|
public string TanarNev { get; set; }
|
|
|
|
public Guid? HelyettesitoTanarUid { get; set; }
|
|
|
|
public string HelyettesitoTanarNev { get; set; }
|
|
|
|
public int? EvesOraSorszam { get; set; }
|
|
|
|
public int? HaziFeladatId { get; set; }
|
|
|
|
public int? BejelentettSzamonkeresId { get; set; }
|
|
|
|
public string BejelentettSzamonkeresMod { get; set; }
|
|
|
|
public string BejelentettSzamonkeresTema { get; set; }
|
|
|
|
public List<CsatolmanyResponse> Csatolmanyok { get; set; }
|
|
|
|
public DateTime? ElozoNaplozottOraDatum { get; set; }
|
|
|
|
public string ElozoNaplozottOraTema { get; set; }
|
|
|
|
public bool Naplozart { get; set; }
|
|
}
|
|
}
|