implemented some not tested kick
This commit is contained in:
parent
65313d46a3
commit
41704aedc4
26 changed files with 756 additions and 185 deletions
|
|
@ -23,13 +23,12 @@ using System.Collections.Generic;
|
|||
|
||||
namespace Yavsc
|
||||
{
|
||||
public partial class ChatHub
|
||||
public class ChatRoomInfo
|
||||
{
|
||||
public class ChatRoomInfo
|
||||
{
|
||||
public string Name;
|
||||
public Dictionary<string, string> Users = new Dictionary<string, string>();
|
||||
public string Topic;
|
||||
}
|
||||
public string Name;
|
||||
public List<string> Users = new List<string>();
|
||||
public List<string> Ops = new List<string>();
|
||||
public List<string> Hops = new List<string>();
|
||||
public string Topic;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue