20 lines
606 B
C#
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; }
|
|
}
|
|
}
|