35 lines
1.4 KiB
C#
35 lines
1.4 KiB
C#
using System;
|
|
using Kreta.Client.KGR.Request;
|
|
|
|
namespace Kreta.Client.KGR.Model
|
|
{
|
|
public class ApaczaiPalyazatModel
|
|
{
|
|
public int Id { get; set; }
|
|
public ApaczaiPalyazatPalyazo Palyazo { get; set; }
|
|
public int TanevId { get; set; }
|
|
public int StatuszId { get; set; }
|
|
public string StatuszNev { get; set; }
|
|
public DateTime? Letrehozva { get; set; }
|
|
public string StatuszKomment { get; set; }
|
|
public string EllenorzesrolAdategyeztetesreVisszakuldveKomment { get; set; }
|
|
public string FelulvizsgalatrolAdategyeztetesreVisszakuldveKomment { get; set; }
|
|
public string StatuszIktatasiSzam { get; set; }
|
|
public string StatuszErkeztetesiSzam { get; set; }
|
|
public DateTime? FellebbezesHatarido { get; set; }
|
|
public DateTime HatranyosHelyzetHatarozatDatum { get; set; }
|
|
}
|
|
|
|
public class ApaczaiPalyazatDokumentumModel
|
|
{
|
|
public int Id { get; set; }
|
|
public Guid IdpEgyediAzonosito { get; set; }
|
|
public Guid FileServiceEgyediAzonosito { get; set; }
|
|
public string FileServiceUtvonal { get; set; }
|
|
public int ApaczaiFileTipusId { get; set; }
|
|
public string ApaczaiFileTipusnev { get; set; }
|
|
public int Meret { get; set; }
|
|
public DateTime Letrehozva { get; set; }
|
|
public string EszaTipus { get; set; }
|
|
}
|
|
}
|