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

27 lines
1 KiB
C#

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