28 lines
836 B
C#
28 lines
836 B
C#
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 MegtartottTanoraGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[KretaDisplayName(1685)] /*Óra sorszám*/
|
|
public string OraSorszam { get; set; }
|
|
|
|
[Display(Name = nameof(AdminisztracioResource.Tantargy), ResourceType = typeof(AdminisztracioResource))]
|
|
public string Tantargy { get; set; }
|
|
|
|
[KretaDisplayName(271)] /*Téma*/
|
|
public string Tema { get; set; }
|
|
|
|
[KretaDisplayName(273)] /*Dátum*/
|
|
public DateTime Datum { get; set; }
|
|
|
|
[KretaDisplayName(274)] /*Óraszám*/
|
|
public string Oraszam { get; set; }
|
|
}
|
|
}
|