Files

20 lines
333 B
C#
Raw Permalink Normal View History

2023-03-12 12:32:26 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TimetableDesigner.Core
{
2023-05-07 17:39:24 +02:00
[Serializable]
public class Subgroup : BaseGroup
2023-03-12 12:32:26 +01:00
{
#region CONSTRUCTORS
2023-05-28 17:43:48 +02:00
public Subgroup(ulong id) : base(id)
2023-05-07 17:39:24 +02:00
{ }
2023-03-12 12:32:26 +01:00
#endregion
}
}