blob: 574d6a5e74fce12723b5ff262ad3eeb37cf1e379 (
plain)
1
2
3
4
5
6
7
8
|
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>();
}
}
|