using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using Kreta.Resources; namespace Kreta.Web.Areas.UgyfelSzolgalat.Models { public class UgyfelszolgalatModel { public UgyfelszolgalatModel() { BejelentesTypusList = new List(); StatusList = new List(); BejelentesGombsor = new List(); } public List BejelentesTypusList { get; set; } public List StatusList { get; set; } public List BejelentesGombsor { get; set; } [Display(Name = nameof(UgyfelszolgalatResource.BejelentesTipusa), ResourceType = typeof(UgyfelszolgalatResource))] public int? BejelentesTypusId { get; set; } [Display(Name = nameof(UgyfelszolgalatResource.Statusz), ResourceType = typeof(UgyfelszolgalatResource))] public int? StatusId { get; set; } public string ServiceDeskId { get; set; } public string Fejlec => UgyfelszolgalatResource.KRETAUgyfelszolgalat; public class BejelentesGomb { public string Id { get; set; } public string ToolTip { get; set; } public string Key { get; set; } } } }