using System; using System.ComponentModel.DataAnnotations; using Kreta.BusinessLogic.Interfaces; using Kreta.Resources; namespace Kreta.Web.Areas.Intezmeny.Models { public class NaptariHetGridModel : IKretaIdentity { public string ID { get; set; } [Display(Name = nameof(HetesResource.Hetirend), ResourceType = typeof(HetesResource))] public int Hetirend { get; set; } [Display(Name = nameof(IntezmenyResource.Sorszam), ResourceType = typeof(IntezmenyResource))] public int HetSorszama { get; set; } [Display(Name = nameof(HetesResource.HetKezdoNapja), ResourceType = typeof(HetesResource))] public DateTime HetKezdoNapja { get; set; } [Display(Name = nameof(HetesResource.HetUtolsoNapja), ResourceType = typeof(HetesResource))] public DateTime HetUtolsoNapja { get; set; } } }