32 lines
907 B
C#
32 lines
907 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.Adminisztracio.Models
|
|
{
|
|
public class TantargyFelosztasGridModel : IKretaIdentity
|
|
{
|
|
[KretaDisplayName(379)]
|
|
public string Osztaly { get; set; }
|
|
|
|
[KretaDisplayName(1619)]
|
|
public string Csoport { get; set; }
|
|
|
|
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
|
public string Tantargy { get; set; }
|
|
|
|
[KretaDisplayName(274)]
|
|
public string Oraszam { get; set; }
|
|
|
|
[KretaDisplayName(30)]
|
|
public string Tanar { get; set; }
|
|
|
|
[KretaDisplayName(3871)]
|
|
public DateTime? TanarSzuletesiDatum { get; set; }
|
|
|
|
[KretaDisplayName(1359)]
|
|
public string ID { get; set; }
|
|
}
|
|
}
|