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