summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/Groups/DSAGroup.cs
blob: 377376e93da9b01cf0cc5f3e81c39554591b6efc (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;
using DSALib.Models.Database.DSA;

namespace DSALib.Models.Database.Groups
{
    public class DSAGroup : Group
    {
        public List<GroupChar> Chars { get; set; } = new List<GroupChar>();
    }
}