init
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Resources;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.OsztalyCsoport.Models
|
||||
{
|
||||
public class OrarendiOraGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; set; }
|
||||
|
||||
[Display(Name = nameof(OsztalyCsoportResource.OrarendiNapHetirendje), ResourceType = typeof(OsztalyCsoportResource))]
|
||||
public string Hetirend_DNAME { get; set; }
|
||||
|
||||
[KretaDisplayName(483)] /*Nap*/
|
||||
public string Nap_DNAME { get; set; }
|
||||
|
||||
[KretaDisplayName(219)] /*Óra*/
|
||||
public string Ora { get; set; }
|
||||
|
||||
[Display(Name = nameof(OsztalyCsoportResource.DualisCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
||||
public string DualisCsoportNeve { get; set; }
|
||||
|
||||
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
||||
public string TantargyNev { get; set; }
|
||||
|
||||
[KretaDisplayName(267)] /*Helyiség*/
|
||||
public string TeremNev { get; set; }
|
||||
|
||||
[KretaDisplayName(268)] /*Érvényesség kezdete*/
|
||||
public DateTime? ErvenyessegKezdete { get; set; }
|
||||
|
||||
[KretaDisplayName(269)] /*Érvényesség vége*/
|
||||
public DateTime? ErvenyessegVege { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user