using System.ComponentModel.DataAnnotations; using Kreta.BusinessLogic.Interfaces; using Kreta.Resources; namespace Kreta.Web.Areas.Tanulo.Models { public class TanulotTanitoTanarokGridModel : IKretaIdentity { public string ID { get; set; } [Display(Name = nameof(TanarResource.Tantargy), ResourceType = typeof(TanarResource))] public string Tantargy { get; set; } [Display(Name = nameof(TanarResource.TanarNeve), ResourceType = typeof(TanarResource))] public string Tanar { get; set; } } }