summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Groups
diff options
context:
space:
mode:
authornatrixaeria <janng@gmx.de>2019-05-17 21:02:08 +0200
committernatrixaeria <janng@gmx.de>2019-05-17 21:02:08 +0200
commitbc74dde4dd7cf40216de4f0aae9a1b9ddf5e044b (patch)
treec1c7f759645417989f15f9716efbf68a8f1d3a6d /DSACore/Models/Database/Groups
parent921d023a7652be5b1232ac41aeb2646b5f83ceb5 (diff)
parentaad1d69b5e2bb0c82f657f7693462fd95a91fb9f (diff)
Merge branch 'scribble' of https://github.com/TrueDoctor/DiscoBot into scribble
Diffstat (limited to 'DSACore/Models/Database/Groups')
-rw-r--r--DSACore/Models/Database/Groups/DSAGroup.cs10
-rw-r--r--DSACore/Models/Database/Groups/Group.cs13
2 files changed, 23 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
diff --git a/DSACore/Models/Database/Groups/Group.cs b/DSACore/Models/Database/Groups/Group.cs
new file mode 100644
index 0000000..23e5f68
--- /dev/null
+++ b/DSACore/Models/Database/Groups/Group.cs
@@ -0,0 +1,13 @@
+namespace DSACore.Models.Database.Groups
+{
+ public class Group
+ {
+ public string Name { get; set; }
+ public string Discord { get; set; }
+ public string Password { get; set; }
+ public int Id { get; set; }
+
+ }
+
+
+}