From 71f85e0d3539539a74e72eb86ecb13a0e637e88a Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Sat, 29 Sep 2018 19:08:20 +0200 Subject: adding database class structure --- DSACore/Models/Network/User.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 DSACore/Models/Network/User.cs (limited to 'DSACore/Models/Network/User.cs') 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; } + } +} -- cgit v1.2.3-54-g00ecf