summaryrefslogtreecommitdiff
path: root/DSACore/Models/Group.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 18:34:15 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 18:34:15 +0200
commit0283e1ae9f66ac2ef53c081e369190af52077406 (patch)
treea344b333f4a1d2fdc84c20a2ccbef4d1d21e1927 /DSACore/Models/Group.cs
parent5a27d1d017587bb2babc482a998153996fec1a7f (diff)
updated group storage
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>();
+ }
+}