implemented some not tested kick

This commit is contained in:
Paul Schneider 2019-06-14 10:03:51 +01:00
commit 41704aedc4
26 changed files with 756 additions and 185 deletions

View file

@ -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;
}
}