Files
TimetableDesigner/TimetableDesigner.Core/BaseGroup.cs

42 lines
641 B
C#
Raw Normal View History

2023-05-07 17:39:24 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TimetableDesigner.Core
{
2023-05-28 17:43:48 +02:00
[Serializable]
public abstract class BaseGroup : Unit
2023-05-07 17:39:24 +02:00
{
#region FIELDS
private string _shortName;
#endregion
#region PROPERTIES
public string ShortName
{
get => _shortName;
set => _shortName = value;
}
#endregion
#region CONSTRUCTORS
2023-05-28 17:43:48 +02:00
public BaseGroup(ulong id) : base(id)
2023-05-07 17:39:24 +02:00
{
_shortName = string.Empty;
}
#endregion
}
}