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