blob: 89fac2ffe8da6368a2bbd2e8c02098babd8bc0e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
using DSACore.Models.Database.DSA;
namespace DSACore.Models.Database.Groups
{
public class DSAGroup : Group
{
public List<GroupChar> Chars { get; set; } = new List<GroupChar>();
}
}
|