summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Group.cs
diff options
context:
space:
mode:
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>();
-
- }
-
-
-}