From 04912687127303fd270b61f131cf68fd4aaae956 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Sat, 29 Sep 2018 05:49:13 +0200 Subject: modified user group authenth --- DSACore/Models/User.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 DSACore/Models/User.cs (limited to 'DSACore/Models') diff --git a/DSACore/Models/User.cs b/DSACore/Models/User.cs new file mode 100644 index 0000000..105e564 --- /dev/null +++ b/DSACore/Models/User.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace DSACore.Models +{ + public class User + { + public string Name { get; set; } + public string Group { get; set; } + } +} -- cgit v1.2.3-54-g00ecf