mirror of
https://gitee.com/dashuaibran/jyker
synced 2025-09-27 03:09:12 +08:00
14 lines
335 B
C#
14 lines
335 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OpenBLive.Runtime.Data
|
|
{
|
|
/// <summary>
|
|
/// 扫码中未登录
|
|
/// </summary>
|
|
public struct LoginStatusScanning
|
|
{
|
|
[JsonProperty("status")] public bool status;
|
|
[JsonProperty("data")] public int data;
|
|
[JsonProperty("message")] public string message;
|
|
}
|
|
} |