using System.ComponentModel.DataAnnotations; using Kreta.BusinessLogic.Interfaces; using Kreta.Resources; namespace Kreta.Web.Areas.Tantargy.Models { public class TantargyMinositeseiTanarAtlagokGridModel : IKretaIdentity { public string ID { get; set; } [Display(Name = nameof(TantargyResource.PedagogusNeve), ResourceType = typeof(TantargyResource))] public string TanarNev { get; set; } [Display(Name = nameof(TantargyResource.Atlag), ResourceType = typeof(TantargyResource))] public string Atlag { get; set; } } }