mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
27 lines
849 B
C#
27 lines
849 B
C#
namespace EggLink.DanhengServer.WebServer.Objects
|
|
{
|
|
public class ComboTokenResJson
|
|
{
|
|
public string message { get; set; }
|
|
public int retcode { get; set; }
|
|
public LoginData data { get; set; } = null;
|
|
|
|
public class LoginData
|
|
{
|
|
public int account_type { get; set; } = 1;
|
|
public bool heartbeat { get; set; }
|
|
public string combo_id { get; set; }
|
|
public string combo_token { get; set; }
|
|
public string open_id { get; set; }
|
|
public string data { get; set; } = "{\"guest\":false}";
|
|
public string fatigue_remind { get; set; } = null; // ?
|
|
|
|
public LoginData(string openId, string comboToken)
|
|
{
|
|
open_id = openId;
|
|
combo_token = comboToken;
|
|
}
|
|
}
|
|
}
|
|
}
|