27 lines
1 KiB
C#
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; }
|
|
}
|
|
}
|