init
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user