init
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Web.Mvc;
|
||||
using Kreta.Resources;
|
||||
|
||||
namespace Kreta.Web.Areas.Beiratkozas.Models
|
||||
{
|
||||
public class NebuloKirSzinkronModel
|
||||
{
|
||||
public KirLoginModel KirLoginModel { get; set; }
|
||||
|
||||
public bool KIRImportEnabled { get; set; } = true;
|
||||
|
||||
[Display(Name = nameof(BeiratkozasResource.KirTelephely), ResourceType = typeof(BeiratkozasResource))]
|
||||
public int? TelephelyId { get; set; }
|
||||
|
||||
public List<SelectListItem> TelephelyList { get; set; } = new List<SelectListItem>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user