This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
@@ -0,0 +1,35 @@
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.Orarend.Models
{
public class MulasztasNaplozasGrid : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(OrarendResource.KesesPercben), ResourceType = typeof(OrarendResource))]
public int? KesesIdo { get; set; }
public string MulasztasTipus { get; set; }
[Display(Name = nameof(OrarendResource.MulasztasTipusa), ResourceType = typeof(OrarendResource))]
public string MulasztasTipus_DNAME { get; set; }
public string MulasztasId { get; set; }
public bool OraMentesseg_BOOL { get; set; }
public string Oka { get; set; }
public bool? Igazolt { get; set; }
[Display(Name = nameof(OrarendResource.TanuloNeve), ResourceType = typeof(OrarendResource))]
public string TanuloNev { get; set; }
public string GondviseloNev { get; set; }
public string GondviseloTelSzam { get; set; }
public bool HaziFeladatHiany_BOOL { get; set; }
public bool FelszerelesHiany_BOOL { get; set; }
public bool Felmentes_BOOL { get; set; }
public bool TanoraiDicseret_BOOL { get; set; }
}
}