summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Groups/DSAGroup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/Groups/DSAGroup.cs')
-rw-r--r--DSACore/Models/Database/Groups/DSAGroup.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/DSACore/Models/Database/Groups/DSAGroup.cs b/DSACore/Models/Database/Groups/DSAGroup.cs
new file mode 100644
index 0000000..8f20278
--- /dev/null
+++ b/DSACore/Models/Database/Groups/DSAGroup.cs
@@ -0,0 +1,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>();
+ }
+} \ No newline at end of file