This commit is contained in:
2023-05-07 17:39:24 +02:00
Unverified
parent 6e34ed1ee7
commit 7fc6fc6229
112 changed files with 5182 additions and 1182 deletions

View File

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