using System; using System.ComponentModel.DataAnnotations; using Kreta.BusinessLogic.Interfaces; using Kreta.Resources; namespace Kreta.Web.Areas.Feljegyzes.Models { public class BaseFeljegyzesNaploNezetReszletekGridModel : IKretaIdentity { public string ID { get; set; } public int TanuloId { get; set; } [Display(Name = nameof(FeljegyzesekResource.Datum), ResourceType = typeof(FeljegyzesekResource))] public DateTime EsemenyDatuma { get; set; } public int Tipus { get; set; } [Display(Name = nameof(FeljegyzesekResource.Tipus), ResourceType = typeof(FeljegyzesekResource))] public string Tipus_DNAME { get; set; } [Display(Name = nameof(FeljegyzesekResource.Targy), ResourceType = typeof(FeljegyzesekResource))] public string Targy { get; set; } [Display(Name = nameof(FeljegyzesekResource.Tartalom), ResourceType = typeof(FeljegyzesekResource))] public string Tartalom { get; set; } [Display(Name = nameof(FeljegyzesekResource.Tanar), ResourceType = typeof(FeljegyzesekResource))] public string FeljegyzoNeve { get; set; } public string Torolt { get; set; } public bool Torolt_BOOL { get; set; } } }