using System.Collections.Generic; namespace Kreta.Web.Areas.Tanulo.Models { public class GondviseloToBovitettModel { public GondviseloToBovitettModel() { ErrorList = new List(); } public bool GeneraltFileLetoltes { get; set; } public bool EmailKuldes { get; set; } public List TanuloIdList { get; set; } = new List(); public List ErrorList { get; set; } public string ConfirmText { get; set; } public string FileString { get; set; } public bool IsError { get; set; } } }