Files

20 lines
339 B
C#
Raw Permalink 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 CONSTRUCTORS
2023-05-28 17:43:48 +02:00
public BaseGroup(ulong id) : base(id)
2023-06-05 00:00:38 +02:00
{ }
2023-05-07 17:39:24 +02:00
#endregion
}
}