jyker/HMIcode/SmallProject/OpenBLive/Runtime/Data/WebsocketInfo.cs
2025-08-21 20:47:08 +08:00

12 lines
343 B
C#

namespace OpenBLive.Runtime.Data
{
/// <summary>
/// 服务器返回的Websocket长链接信息 https://open-live.bilibili.com/document/657d8e34-f926-a133-16c0-300c1afc6e6b
/// </summary>
public struct WebsocketInfo
{
public int code;
public string message;
public WebsocketInfoData data;
}
}