kreta/Kreta.Client/LEP/LEPResponseModel.cs
2024-03-13 00:33:46 +01:00

72 lines
2.6 KiB
C#

using System;
using System.Collections.Generic;
namespace Kreta.Client.LEP
{
public class EloadasResponseModel
{
public List<EloadasIdopontResponseModel> EloadasList { get; set; } = new List<EloadasIdopontResponseModel>();
}
public class EloadasIdopontResponseModel
{
public int Id { get; set; }
public string SzervezetNev { get; set; }
public string Nev { get; set; }
public string Leiras { get; set; }
public int Idotartam { get; set; }
public string TipusNev { get; set; }
public int Evfolyam { get; set; }
public string EvFolyamNev { get; set; }
public DateTime Kezdete { get; set; }
public DateTime Vege { get; set; }
public int TanuloLetszam { get; set; }
public int? TanuloLetszamFennmarado { get; set; }
public int? TanuloJelentkezokSzama { get; set; }
public int KiseroLetszam { get; set; }
public int? KiseroLetszamFennmarado { get; set; }
public int? KiseroJelentkezokSzama { get; set; }
public bool IsJelentkezesAktiv { get; set; }
public int OrszagId { get; set; }
public string OrszagNev { get; set; }
public int IranyitoSzam { get; set; }
public string Telepules { get; set; }
public int? KozteruletJellegId { get; set; }
public string KozteruletJellegNev { get; set; }
public string KozteruletNev { get; set; }
public string Hazszam { get; set; }
public string LepcsoHaz { get; set; }
public string Emelet { get; set; }
public string Ajto { get; set; }
public bool IsToroltJelentkezes { get; set; }
}
public class JelentkezesResponseModel
{
public string IntezmenyAzonosito { get; set; }
public int EloadasIdopont { get; set; }
public bool Sikeres { get; set; }
public int StatuszKod { get; set; }
public string StatuszUzenet { get; set; }
}
public class JelenletResponseModel
{
public string IntezmenyAzonosito { get; set; }
public int EloadasIdopont { get; set; }
public bool Sikeres { get; set; }
public int StatuszKod { get; set; }
public string StatuszUzenet { get; set; }
}
public class JelenletRequestPartialModel
{
public int TanuloId { get; set; }
public int? EvfolyamId { get; set; }
public string EvfolyamNev { get; set; }
public int? OsztalyId { get; set; }
public string OsztalyNev { get; set; }
public bool Megjelent { get; set; }
public bool Torolt { get; set; }
}
}