UserConfig.cs 1.1 KB

1234567891011121314151617181920212223242526
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class UserConfig
  5. {
  6. private string prikey = "UserConfig";
  7. private string account;
  8. private string id;
  9. private string sc_uid;
  10. private string nick_name;
  11. private string avatar;
  12. private string is_activate;
  13. private string login_type;//1 账号密码登录 2 手机号登录 3 SN号登录
  14. private bool isRemberUserAndPass;
  15. public string Prikey { get => prikey; set => prikey = value; }
  16. public string Account { get => account; set => account = value; }
  17. public string Id { get => id; set => id = value; }
  18. public string Sc_uid { get => sc_uid; set => sc_uid = value; }
  19. public string Nick_name { get => nick_name; set => nick_name = value; }
  20. public string Avatar { get => avatar; set => avatar = value; }
  21. public string Is_activate { get => is_activate; set => is_activate = value; }
  22. public string Login_type { get => login_type; set => login_type = value; }
  23. public bool IsRemberUserAndPass { get => isRemberUserAndPass; set => isRemberUserAndPass = value; }
  24. }