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

68 lines
3.3 KiB
C#

using System.ComponentModel.DataAnnotations;
using Kreta.Resources;
namespace Kreta.Web.Areas.Adminisztracio.Models
{
public class HelyettesitesInfoModel
{
[Display(Name = nameof(OrarendResource.Datum), ResourceType = typeof(OrarendResource))]
public string Datum { get; set; }
[Display(Name = nameof(OrarendResource.OraszamIdopont), ResourceType = typeof(OrarendResource))]
public int? Oraszam { get; set; }
[Display(Name = nameof(OrarendResource.HetNapja), ResourceType = typeof(OrarendResource))]
public string HetNapja { get; set; }
[Display(Name = nameof(OrarendResource.Hetirend), ResourceType = typeof(OrarendResource))]
public string Hetirend { get; set; }
[Display(Name = nameof(OrarendResource.Foglalkozas), ResourceType = typeof(OrarendResource))]
public string Foglalkozas { get; set; }
[Display(Name = nameof(OrarendResource.OsztalyCsoport), ResourceType = typeof(OrarendResource))]
public string OsztalyCsoport { get; set; }
[Display(Name = nameof(OrarendResource.Tantargy), ResourceType = typeof(OrarendResource))]
public string Tantargy { get; set; }
[Display(Name = nameof(AdminisztracioResource.HelyettesitoPedagogus), ResourceType = typeof(AdminisztracioResource))]
public string Tanar { get; set; }
[Display(Name = nameof(OrarendResource.Helyiseg), ResourceType = typeof(OrarendResource))]
public string Terem { get; set; }
[Display(Name = nameof(OrarendResource.Megtartott), ResourceType = typeof(OrarendResource))]
public string Megtartott { get; set; }
[Display(Name = nameof(OrarendResource.Sorszamozott), ResourceType = typeof(OrarendResource))]
public string Sorszamozando { get; set; }
[Display(Name = nameof(OrarendResource.TanitasiOraKezdete), ResourceType = typeof(OrarendResource))]
public string OraKezdete { get; set; }
[Display(Name = nameof(OrarendResource.TanitasiOraVege), ResourceType = typeof(OrarendResource))]
public string OraVege { get; set; }
[Display(Name = nameof(OrarendResource.TanitasiOraTemaja), ResourceType = typeof(OrarendResource))]
public string Tema { get; set; }
[Display(Name = nameof(AdminisztracioResource.HelyettesitesOka), ResourceType = typeof(AdminisztracioResource))]
public string HelyettesitesOka { get; set; }
[Display(Name = nameof(OrarendResource.HaziFeladat), ResourceType = typeof(OrarendResource))]
public string HaziFeladat { get; set; }
[Display(Name = nameof(AdminisztracioResource.HelyettesitesTipusa), ResourceType = typeof(AdminisztracioResource))]
public string HelyettesitesTipusa { get; set; }
[Display(Name = nameof(AdminisztracioResource.HelyettesitesElrendelesenekIdopontja), ResourceType = typeof(AdminisztracioResource))]
public string HelyettesitesElrendelesenekIdopontja { get; set; }
[Display(Name = nameof(AdminisztracioResource.NaplozasIdopontja), ResourceType = typeof(AdminisztracioResource))]
public string NaplozasIdopontja { get; set; }
[Display(Name = nameof(AdminisztracioResource.LegutobbiModositasIdopontja), ResourceType = typeof(AdminisztracioResource))]
public string LegutobbiModositasIdopontja { get; set; }
}
}