summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/Groups
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-05-19 17:58:42 +0200
committerDennis Kobert <d-kobert@web.de>2019-05-19 17:58:42 +0200
commit2ab4051c6fe720dc47e99b0c305a0d779ee02d51 (patch)
tree9510ddbb174a54474934adf7991a5ba2aa39f818 /DSALib/Models/Database/Groups
parentc4d046858e0822b7c2c540ac2368b2c0e88e7a26 (diff)
Moved Gamelogic to DSALib
Diffstat (limited to 'DSALib/Models/Database/Groups')
-rw-r--r--DSALib/Models/Database/Groups/DSAGroup.cs10
-rw-r--r--DSALib/Models/Database/Groups/Group.cs10
2 files changed, 20 insertions, 0 deletions
diff --git a/DSALib/Models/Database/Groups/DSAGroup.cs b/DSALib/Models/Database/Groups/DSAGroup.cs
new file mode 100644
index 0000000..89fac2f
--- /dev/null
+++ b/DSALib/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/DSALib/Models/Database/Groups/Group.cs b/DSALib/Models/Database/Groups/Group.cs
new file mode 100644
index 0000000..77d3a64
--- /dev/null
+++ b/DSALib/Models/Database/Groups/Group.cs
@@ -0,0 +1,10 @@
+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; }
+ }
+} \ No newline at end of file