using System.ComponentModel.DataAnnotations; using Kreta.BusinessLogic.Interfaces; using Kreta.Resources; namespace Kreta.Web.Areas.Beiratkozas.Models { public class NebuloKirSzinkronGridModel : IKretaIdentity { public string ID { get; set; } [Display(Name = nameof(BeiratkozasResource.OktatasiAzonosito), ResourceType = typeof(BeiratkozasResource))] public string OktatasiAzonosito { get; set; } [Display(Name = nameof(BeiratkozasResource.NebuloSzuletesiNeve), ResourceType = typeof(BeiratkozasResource))] public string Nev { get; set; } } }