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,26 @@
using System.Collections.Generic;
using System.Web.Mvc;
using Kreta.BusinessLogic.Classes;
using Kreta.Web.Attributes;
namespace Kreta.Web.Areas.Adminisztracio.Models
{
public class KIRImportModel
{
public string OmAzonosito { get; set; }
public string FelhasznaloNev { get; set; }
public string KirToken { get; set; }
[KretaDisplayName(4598)] //Telephely
[KretaRequired(StringResourcesId = 4599)] //Telephely megadása kötelező
public int? TelephelyKod { get; set; }
public List<SelectListItem> TelephelyList { get; set; }
public int? TanevId { get; set; }
public int? FeladatellatasiHelyId { get; set; }
}
}