17 lines
442 B
C#
17 lines
442 B
C#
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Web.Attributes;
|
|
|
|
namespace Kreta.Web.Areas.Tantargy.Models
|
|
{
|
|
public class OraTervGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
public int? OraTervId { get; set; }
|
|
|
|
[KretaDisplayName(108)] /*Név*/
|
|
public string Nev { get; set; }
|
|
|
|
[KretaDisplayName(442)] /*Évfolyam*/
|
|
public string EvFolyam_DNAME { get; set; }
|
|
}
|
|
}
|