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,27 @@
using System.Collections.Generic;
using System.Web.Mvc;
using Kreta.Web.Attributes;
using Kreta.Web.Models;
namespace Kreta.Web.Areas.Adminisztracio.Models
{
public class TanarKIRImportModel : UploadFileModel
{
[KretaDisplayName(450)] /*Tanév*/
//[KretaRequired(StringResourcesId = 3823)]
public int? TanevId { get; set; }
[KretaDisplayName(90)] /*Feladatellátási hely*/
//[KretaRequired(StringResourcesId = 4920)]
public int? FeladatellatasiHelyId { get; set; }
public List<SelectListItem> FeladatellatasiHelyList { get; set; }
public List<SelectListItem> TanevLista { get; set; }
public KIRLoginModel KirLoginModel { get; set; }
public KIRImportModel KIRImportModel { get; set; }
public bool KIRImportEnabled { get; set; }
}
}