35 lines
633 B
C#
35 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TimetableDesigner.Core
|
|
{
|
|
public class Class
|
|
{
|
|
#region PROPERTIES
|
|
|
|
public string Name { get; set; }
|
|
public Teacher? Teacher { get; set; }
|
|
public IGroup? Group { get; set; }
|
|
public Classroom? Classroom { get; set; }
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
public Class()
|
|
{
|
|
Name = string.Empty;
|
|
Teacher = null;
|
|
Group = null;
|
|
Classroom = null;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|