Reorganize and Add UserManager

This commit is contained in:
2021-01-23 10:52:10 +01:00
parent 6148956bc6
commit 5fe7edcb4c
12 changed files with 215 additions and 206 deletions

27
Users/User.cs Normal file
View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Akari.Provider.WaveshareUART.Users
{
public class User
{
public string Name { get; private set; }
public string Token { get; private set; }
public ushort RangeStart { get; private set; }
public User()
{
}
public User(string name, string token, ushort rangeStart)
{
Name = name;
Token = token;
RangeStart = rangeStart;
}
}
}