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,19 @@
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.HRModul.Models
{
public class TavolletjelentoDokGridModel : IKretaIdentity
{
public string ID { get; set; }
[Display(Name = nameof(HRModulResource.DokumentumNev), ResourceType = typeof(HRModulResource))]
public string DokumentumNev { get; set; }
[Display(Name = nameof(HRModulResource.Iktatoszam), ResourceType = typeof(HRModulResource))]
public string Iktatoszam { get; set; }
public string IsDokumentum { get; set; }
}
}