init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
20
KretaWeb/Areas/Intezmeny/Models/TeremEszkozGridModel.cs
Normal file
20
KretaWeb/Areas/Intezmeny/Models/TeremEszkozGridModel.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue