using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TimetableDesigner.Core { [Serializable] public class TimetableTemplate { #region FIELDS private List _days; private TimetableSpanCollection _slots; #endregion #region PROPERTIES public ICollection Days => _days; public ICollection Slots => _slots; #endregion #region CONSTRUCTORS public TimetableTemplate() { _days = new List(); _slots = new TimetableSpanCollection(); } #endregion } }