blob: 8f20278822eecb91b612a16d22b39de86a5bb948 (
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>();
}
}
|