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

23 lines
860 B
C#

using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.Tantargy.Models
{
public class TantargyTanmeneteiGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(TantargyResource.OsztalyCsoport), ResourceType = typeof(TantargyResource))]
public string OsztalyCsoport { get; set; }
[Display(Name = nameof(TantargyResource.Pedagogus), ResourceType = typeof(TantargyResource))]
public string Tanar { get; set; }
[Display(Name = nameof(TantargyResource.OraSorszama), ResourceType = typeof(TantargyResource))]
public float Oraszam { get; set; }
[Display(Name = nameof(TantargyResource.Tema), ResourceType = typeof(TantargyResource))]
public string Tema { get; set; }
}
}