23 lines
860 B
C#
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; }
|
|
}
|
|
}
|