This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
namespace Kreta.Client.KGR.Model
{
public class ProjektModel
{
public int Id { get; set; }
public string Azonosito { get; set; }
public string Nev { get; set; }
public DateTime Kezdete { get; set; }
public DateTime Vege { get; set; }
public DateTime TSZTOMegkotesDatum { get; set; }
public bool Kerdoiv { get; set; }
public int Merfoldkovek { get; set; }
public int TeruletiHataly { get; set; }
public string TeruletiHatalyNev { get; set; }
public DateTime? JelentkezesHataridoKezdet { get; set; }
public DateTime? JelentkezesHataridoVeg { get; set; }
public bool IsJelentkezett { get; set; }
public bool IsVisszautasitott { get; set; }
public int? JelentkezokSzama { get; set; }
public bool IsElfogadott { get; set; }
}
}