Redid stores. Added user store. Added Channel Manager, to manage data from a single channel.
This commit is contained in:
11
Models/User.cs
Normal file
11
Models/User.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace HermesSocketServer.Models
|
||||
{
|
||||
public class User
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Email { get; set; }
|
||||
public string Role { get; set; }
|
||||
public string DefaultVoice { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user