27 lines
701 B
C#
27 lines
701 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class OsztalyTanuloiGondviselokPopupCo
|
|
{
|
|
public string FelhasznaloNev { get; set; }
|
|
|
|
public DateTime? UtolsoBelepes { get; set; }
|
|
|
|
public DateTime? UtolsoBelepesMobil { get; set; }
|
|
|
|
public List<(bool, string)> EmailCimek { get; set; }
|
|
|
|
public List<(bool, string)> Telefonszamok { get; set; }
|
|
|
|
public OsztalyTanuloiGondviselokPopupCo()
|
|
{
|
|
EmailCimek = new List<(bool, string)>();
|
|
Telefonszamok = new List<(bool, string)>();
|
|
}
|
|
}
|
|
}
|