namespace Admin.NET.Core;
///
/// 聊天客户端接口定义
///
public interface IChatClient
{
///
/// 强制下线
///
///
Task ForceExist(string str);
///
/// 发送信息
///
///
///
Task ReceiveMessage(object context);
///
/// 组合信息
///
///
///
Task AppendNotice(SysNotice notice);
}