44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
namespace Kreta.Client.KozpontiKreta.Model
|
|
{
|
|
public class TantargyFelosztasResponse
|
|
{
|
|
public int IntezmenyId { get; set; }
|
|
|
|
public int? SearchOsztalyCsoport { get; set; }
|
|
|
|
public int? SearchTantargy { get; set; }
|
|
|
|
public int? SearchTanar { get; set; }
|
|
|
|
public int? SearchEvfolyam { get; set; }
|
|
|
|
public int? SearchTanev { get; set; }
|
|
|
|
public double? SearchOraszam { get; set; }
|
|
|
|
public int? SearchFeladatellatasihely { get; set; }
|
|
|
|
public int? SearchFoglalkozasTipusa { get; set; }
|
|
|
|
public bool ElfogadottTTF { get; set; }
|
|
|
|
public bool ElfogadottESL { get; set; }
|
|
|
|
public bool VeglegesTTF { get; set; }
|
|
|
|
public bool VeglegesESL { get; set; }
|
|
|
|
public bool VeglegesETTF { get; set; }
|
|
|
|
public bool Islocked { get; set; }
|
|
|
|
public int StatusCode { get; set; }
|
|
|
|
public string RegNumber { get; set; }
|
|
|
|
public string StatusTitle { get; set; }
|
|
|
|
public string StatusText { get; set; }
|
|
}
|
|
}
|