51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
namespace FlowerPower
|
|||
|
|
{
|
||
|
|
public class LoginModel : BaseModel
|
||
|
|
{
|
||
|
|
public long uid;
|
||
|
|
public bool new_player;
|
||
|
|
public string token;
|
||
|
|
public long expires_at;
|
||
|
|
public string country;
|
||
|
|
public string invite_code;
|
||
|
|
public string invite_url;
|
||
|
|
public long last_login_time;
|
||
|
|
public string play_data;
|
||
|
|
public string setting;
|
||
|
|
public string cdn_url;
|
||
|
|
public long login_time;
|
||
|
|
public long reg_time;
|
||
|
|
public bool is_black_ip;
|
||
|
|
public string ConfigType;
|
||
|
|
public long play_data_ver;
|
||
|
|
public Preferences preferences;
|
||
|
|
public bool debug_log = true;
|
||
|
|
public bool is_magic;
|
||
|
|
public int enwp;
|
||
|
|
|
||
|
|
|
||
|
|
#region 生命周期
|
||
|
|
|
||
|
|
protected override void OnInit()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override void OnDispose()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
#region 消息
|
||
|
|
|
||
|
|
protected override void AddListener()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override void RemoveListener()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|