summaryrefslogtreecommitdiff
path: root/DSACore/Models/Network/User.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 19:08:20 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 19:08:20 +0200
commit71f85e0d3539539a74e72eb86ecb13a0e637e88a (patch)
treed5f051a20a5849f0b43a711912330c6374b2ca68 /DSACore/Models/Network/User.cs
parent0283e1ae9f66ac2ef53c081e369190af52077406 (diff)
adding database class structure
Diffstat (limited to 'DSACore/Models/Network/User.cs')
-rw-r--r--DSACore/Models/Network/User.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/DSACore/Models/Network/User.cs b/DSACore/Models/Network/User.cs
new file mode 100644
index 0000000..b207a19
--- /dev/null
+++ b/DSACore/Models/Network/User.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Network
+{
+ public class User
+ {
+ public string Name { get; set; }
+ public string ConnectionId { get; set; }
+ }
+}