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