namespace Serein.Proto.WebSocket.Handle { /// /// 远程环境配置 /// public class WebSocketHandleModuleConfig { /// /// 有关消息ID的 Json Key /// public string MsgIdJsonKey { get; set; } /// /// 有关消息主题的 Json Key /// public string ThemeJsonKey { get; set; } /// /// 有关数据的 Json Key /// public string DataJsonKey { get; set; } /// /// 使用怎么样的数据 /// public bool IsResponseUseReturn { get; set; } } }