summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Groups
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-05-16 01:10:10 +0200
committerDennis Kobert <d-kobert@web.de>2019-05-16 01:10:10 +0200
commit91fc989eea5ee16c2f000064b5c040a6fe6f23b9 (patch)
tree2cb29d1bc191cbba9aab216620a4a644b1f6d806 /DSACore/Models/Database/Groups
parent6d988d13f7fc1652e2d041cfd1c4b40dce6a8adb (diff)
Implement tokens
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; }
+
+ }
+
+
+}