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
|
|
|
|
|
|
{
|
2023-03-26 23:01:58 +02:00
|
|
|
|
public class Group : IGroup
|
2023-03-12 12:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public ICollection<Subgroup> AssignedSubgroups { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-03-26 23:01:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
|
|
|
|
|
|
|
|
public Group()
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = string.Empty;
|
|
|
|
|
|
Description = string.Empty;
|
|
|
|
|
|
AssignedSubgroups = new HashSet<Subgroup>();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-03-12 12:32:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|