Core changes

This commit is contained in:
2023-06-05 00:00:38 +02:00
Unverified
parent d9b0e69f7c
commit a967b5e7f3
4 changed files with 8 additions and 37 deletions

View File

@@ -9,32 +9,10 @@ namespace TimetableDesigner.Core
[Serializable]
public abstract class BaseGroup : Unit
{
#region FIELDS
private string _shortName;
#endregion
#region PROPERTIES
public string ShortName
{
get => _shortName;
set => _shortName = value;
}
#endregion
#region CONSTRUCTORS
public BaseGroup(ulong id) : base(id)
{
_shortName = string.Empty;
}
{ }
#endregion
}