49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Web.Areas.Beiratkozas.Models
|
|
{
|
|
public class NebuloEUgyTorlesResponseModel
|
|
{
|
|
public string OktatasiAzonosito { get; set; }
|
|
public DateTime SzuletesiDatum { get; set; }
|
|
public string MuveletStatusz { get; set; }
|
|
}
|
|
|
|
public class NebuloEUgySaveResponseModel
|
|
{
|
|
public string OktatasiAzonosito { get; set; }
|
|
public DateTime SzuletesiDatum { get; set; }
|
|
public string MuveletStatusz { get; set; }
|
|
public List<NebuloEUgyHibaResponseModel> HibaLista { get; set; }
|
|
}
|
|
|
|
public class NebuloEUgyHibaResponseModel
|
|
{
|
|
public string KretaIntezmenyAzonosito { get; set; }
|
|
public string KretaIntezmenyNev { get; set; }
|
|
public string KretaIntezmenyCim { get; set; }
|
|
public string KretaIntezmenyOmAzonosito { get; set; }
|
|
public string Statusz { get; set; }
|
|
}
|
|
|
|
public class TobbesTorlesNEbuloEugyModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string OktatasiAzonosito { get; set; }
|
|
public string Nev { get; set; }
|
|
}
|
|
|
|
public class PreCheckModel
|
|
{
|
|
public string Ugyiratszam { get; set; }
|
|
public string TanuloOktatasiAzonosito { get; set; }
|
|
}
|
|
|
|
public class KerelemStatuszokResponseModel
|
|
{
|
|
public string Ugyiratszam { get; set; }
|
|
public string TanuloOktatasiAzonosito { get; set; }
|
|
public string Statusz { get; set; }
|
|
}
|
|
}
|