This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,34 @@
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.HelperClasses;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Core.CustomAttributes;
using Kreta.Resources;
namespace Kreta.Web.Areas.Adatszolgaltatasok.Models
{
public class NemAllamiIntOktKoltsegvetesGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(IntezmenyResource.MukodesiHelyAzonosito), ResourceType = typeof(IntezmenyResource))]
public string MukodesiHelyAzonosito { get; set; }
[Display(Name = nameof(IntezmenyResource.MukodesiHelyNeve), ResourceType = typeof(IntezmenyResource))]
public string MukodesihelyNeve { get; set; }
[Display(Name = nameof(IntezmenyResource.MukodesiHelyCime), ResourceType = typeof(IntezmenyResource))]
public string MukodesihelyCime { get; set; }
[Display(Name = nameof(IntezmenyResource.EllatottFeladat), ResourceType = typeof(IntezmenyResource))]
public string EllatottFeladat { get; set; }
[Display(Name = nameof(IntezmenyResource.BevetelekOsszesen), ResourceType = typeof(IntezmenyResource))]
public int BevetelOsszesen { get; set; }
[Display(Name = nameof(IntezmenyResource.KiadasokOsszesen), ResourceType = typeof(IntezmenyResource))]
public int KiadasOsszesen { get; set; }
[Display(Name = nameof(IntezmenyResource.SzemelyiJelleguKifizetesekOsszesen), ResourceType = typeof(IntezmenyResource))]
public int SzemelyiJelleguKifizetesek { get; set; }
}
}