using System; using System.ComponentModel.DataAnnotations; using Kreta.BusinessLogic.Interfaces; using Kreta.Resources; using Kreta.Web.Attributes; namespace Kreta.Web.Areas.TanuloErtekeles.Models { public class NaploEllenorzesDetailGridModel : IKretaIdentity { public string ID { get; set; } [KretaDisplayName(273)] //Dátum public DateTime? Datum { get; set; } [KretaDisplayName(483)] //Nap public string HetNapja_DNAME { get; set; } [KretaDisplayName(1685)] //Óra sorszám public string Oraszam { get; set; } [Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))] public string OsztalyNev { get; set; } [Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))] public string TargyNev { get; set; } [KretaDisplayName(456)] //Pedagógus public string TanarNev { get; set; } [Display(Name = nameof(AdminisztracioResource.EgyediNap), ResourceType = typeof(AdminisztracioResource))] public string IsEgyediNap_BNAME { get; set; } public string OraKezdeteString { get; set; } public string OraVegeString { get; set; } } }