2025-07-27 23:34:01 +08:00
|
|
|
|
namespace Serein.Proto.WebSocket.Handle
|
2024-10-28 00:31:41 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 远程环境配置
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class WebSocketHandleModuleConfig
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 有关消息ID的 Json Key
|
|
|
|
|
|
/// </summary>
|
2025-07-30 21:15:07 +08:00
|
|
|
|
public string MsgIdJsonKey { get; set; } = string.Empty;
|
2024-10-28 00:31:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 有关消息主题的 Json Key
|
|
|
|
|
|
/// </summary>
|
2025-07-30 21:15:07 +08:00
|
|
|
|
public string ThemeJsonKey { get; set; } = string.Empty;
|
2024-10-28 00:31:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 有关数据的 Json Key
|
|
|
|
|
|
/// </summary>
|
2025-07-30 21:15:07 +08:00
|
|
|
|
public string DataJsonKey { get; set; } = string.Empty;
|
2025-07-27 23:34:01 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 使用怎么样的数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IsResponseUseReturn { get; set; }
|
2024-10-28 00:31:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|