This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,39 @@
using System.ComponentModel.DataAnnotations;
using Kreta.Resources;
using Kreta.Web.Attributes;
namespace Kreta.Web.Areas.Intezmeny.Models
{
public class TanevRendjeInfoModel
{
[KretaDisplayName(450)]
public string TanevNeve { get; set; }
[KretaDisplayName(273)]
public string Datum { get; set; }
[KretaDisplayName(671)]
public string NapTipusa { get; set; }
[Display(Name = nameof(IntezmenyResource.ElteroOrarendSzerintiNap), ResourceType = typeof(IntezmenyResource))]
public string Nap { get; set; }
[KretaDisplayName(265)]
public string Hetirend { get; set; }
[Display(Name = nameof(IntezmenyResource.ErintettOsztalyCsoport), ResourceType = typeof(IntezmenyResource))]
public string Csoportok { get; set; }
[KretaDisplayName(14)]
public string CsengetesiRend { get; set; }
[KretaDisplayName(97)]
public string Megjegyzes { get; set; }
[Display(Name = nameof(IntezmenyResource.UresOrarend), ResourceType = typeof(IntezmenyResource))]
public bool UresOrarend { get; set; }
[Display(Name = nameof(IntezmenyResource.ElteroOrarendSzerintiTanitasNapDatum), ResourceType = typeof(IntezmenyResource))]
public string ElteroOrarendSzerintiTanitasNapDatum { get; set; }
}
}