kreta/KretaWeb/Areas/Tanulo/Models/TanarTanitottTanulokGridModel.cs
2024-03-13 00:33:46 +01:00

26 lines
1 KiB
C#

using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.Tanulo.Models
{
public class TanarTanitottTanulokGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(TanuloResource.Tanulo), ResourceType = typeof(TanuloResource))]
public string TanuloNev { get; set; }
[Display(Name = nameof(TanuloResource.Tanulo), ResourceType = typeof(TanuloResource))]
public string TanuloNevElotagNelkul { get; set; }
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
public string FoglalkozasNev { get; set; }
[Display(Name = nameof(TantargyResource.Tantargy), ResourceType = typeof(TantargyResource))]
public string TantargyNev { get; set; }
[Display(Name = nameof(TanuloResource.FoglalkozasTipus), ResourceType = typeof(TanuloResource))]
public string Tipus_DNAME { get; set; }
}
}