mirror of
https://gitee.com/dashuaibran/jyker
synced 2025-09-26 18:59:11 +08:00
12 lines
228 B
C#
12 lines
228 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OpenBLive.Runtime.Data
|
|
{
|
|
public struct LoginUrl
|
|
{
|
|
[JsonProperty("data")]
|
|
public LoginUrlData data;
|
|
[JsonProperty("status")]
|
|
public bool status;
|
|
}
|
|
} |