summaryrefslogtreecommitdiff
path: root/DSACore/Models/Group.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Group.cs')
-rw-r--r--DSACore/Models/Group.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/DSACore/Models/Group.cs b/DSACore/Models/Group.cs
new file mode 100644
index 0000000..27d7ee7
--- /dev/null
+++ b/DSACore/Models/Group.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models
+{
+ public class Group
+ {
+ public string Name { get; set; }
+ public List<User> Users { get; set; }= new List<User>();
+ }
+}