fix:1、添加项目

This commit is contained in:
2026-04-22 09:52:55 +08:00
commit 173cfb2dc9
5871 changed files with 600870 additions and 0 deletions
@@ -0,0 +1,51 @@
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
}
}