kreta/KretaWeb/Areas/Tanulo/Models/GondviseloToBovitettModel.cs
2024-03-13 00:33:46 +01:00

20 lines
606 B
C#

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