Files
TimetableDesigner/TimetableDesigner.Core/Teacher.cs

33 lines
689 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
{
public class Teacher
{
#region PROPERTIES
public string Name { get; set; }
public string Description { get; set; }
2023-03-12 17:52:17 +01:00
public IDictionary<TimetableDay, TimetableSpanCollection> AvailabilityHours { get; set; }
#endregion
#region CONSTRUCTORS
public Teacher()
{
Name = string.Empty;
Description = string.Empty;
AvailabilityHours = new Dictionary<TimetableDay, TimetableSpanCollection>();
}
2023-03-12 12:32:26 +01:00
#endregion
}
}