Files
TimetableDesigner/TimetableDesigner.Core/TimetableTemplate.cs

41 lines
730 B
C#
Raw Normal View History

2023-03-12 12:32:26 +01:00
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<TimetableDay> _days;
2023-03-12 17:52:17 +01:00
private TimetableSpanCollection _slots;
2023-03-12 12:32:26 +01:00
#endregion
#region PROPERTIES
2023-05-07 17:39:24 +02:00
public ICollection<TimetableDay> Days => _days;
public ICollection<TimetableSpan> Slots => _slots;
2023-03-12 12:32:26 +01:00
#endregion
#region CONSTRUCTORS
public TimetableTemplate()
{
_days = new List<TimetableDay>();
2023-03-12 17:52:17 +01:00
_slots = new TimetableSpanCollection();
2023-03-12 12:32:26 +01:00
}
#endregion
}
}