using System.Collections.Generic; namespace Kreta.BusinessLogic.HelperClasses.AscImportExport { public class AscImport { public AscImport() { OsztalyLista = new List(); TantargyLista = new List(); TeremLista = new List(); HetirendLista = new List(); TanarLista = new List(); CsoportLista = new List(); } public List OsztalyLista { get; set; } public List TantargyLista { get; set; } public List TeremLista { get; set; } public List HetirendLista { get; set; } public List TanarLista { get; set; } public List CsoportLista { get; set; } } }