19 lines
475 B
C#
19 lines
475 B
C#
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.Tantargy.Models
|
|
{
|
|
public class TanmenetOrakGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[KretaDisplayName(274)]/*Óraszám*/
|
|
public int Oraszam { get; set; }
|
|
|
|
[KretaDisplayName(271)]/*Téma*/
|
|
public string Nev { get; set; }
|
|
|
|
[KretaDisplayName(271)]/*Téma*/
|
|
public string Tema { get; set; }
|
|
}
|
|
}
|