using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using Kreta.Resources; namespace Kreta.Web.Areas.Adminisztracio.Models { public class FelHelyValasztoModel { [Display(Name = nameof(LoginResource.KivalaszthatoFelhelyek), ResourceType = typeof(LoginResource))] public List FelhelyList { get; set; } = new List(); public FelHelyValasztoModel() { } } }