mirror of
https://gitee.com/dashuaibran/jyker
synced 2025-09-26 18:59:11 +08:00
14 lines
329 B
C#
14 lines
329 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OpenBLive.Runtime.Data
|
|
{
|
|
/// <summary>
|
|
/// 登录成功
|
|
/// </summary>
|
|
public struct LoginStatusReady
|
|
{
|
|
[JsonProperty("code")] public int code;
|
|
[JsonProperty("status")] public bool status;
|
|
[JsonProperty("data")] public LoginStatusData data;
|
|
}
|
|
} |