group and subgroup adding/editing, services added

This commit is contained in:
2023-03-26 23:01:58 +02:00
Unverified
parent 3cc4ea5b4b
commit 6e34ed1ee7
70 changed files with 2310 additions and 853 deletions

View File

@@ -6,12 +6,22 @@ using System.Threading.Tasks;
namespace TimetableDesigner.Core
{
public class Subgroup
public class Subgroup : IGroup
{
#region PROPERTIES
public string Name { get; set; }
public string Description { get; set; }
#endregion
#region CONSTRUCTORS
public Subgroup()
{
Name = string.Empty;
}
#endregion
}