kreta/KretaWeb/Areas/Intezmeny/Models/TeremEszkozGridModel.cs
2024-03-13 00:33:46 +01:00

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; }
}
}