summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Group.cs
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/Group.cs
parent6d988d13f7fc1652e2d041cfd1c4b40dce6a8adb (diff)
Implement tokens
Diffstat (limited to 'DSACore/Models/Database/Group.cs')
-rw-r--r--DSACore/Models/Database/Group.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/DSACore/Models/Database/Group.cs b/DSACore/Models/Database/Group.cs
deleted file mode 100644
index a7bb929..0000000
--- a/DSACore/Models/Database/Group.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-
-namespace DSACore.Models.Database
-{
- public class Group
- {
- public string Name { get; set; }
- public string Discord { get; set; }
- public string Password { get; set; }
- public int Id { get; set; }
- public List<GroupChar> Chars { get; set; }= new List<GroupChar>();
-
- }
-
-
-}