20 lines
726 B
C#
20 lines
726 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Intezmeny.Models
|
|
{
|
|
public class TeremEszkozGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.EszkozNeve), ResourceType = typeof(IntezmenyResource))]
|
|
public string Nev { get; set; }
|
|
|
|
[Display(Name = nameof(IntezmenyResource.Tipus), ResourceType = typeof(IntezmenyResource))]
|
|
public string TipusId_DNAME { get; set; } //TeremTipusEnums
|
|
|
|
[Display(Name = nameof(IntezmenyResource.Darabszam), ResourceType = typeof(IntezmenyResource))]
|
|
public int Darabszam { get; set; }
|
|
}
|
|
}
|