RoleInfoData.cs 866 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace GFGGame
  3. {
  4. public class OtherRoleInfoData//其他玩家摘要信息
  5. {
  6. public long roleId;
  7. public string roleName;
  8. public int roleLv;
  9. public int roleHead;//头像
  10. public int roleHeadBorder;//头像框
  11. public long offlineTimeSec;//离线时间戳,单位秒,0表示在线
  12. }
  13. public class OtherRoleInfoDetailData//其他玩家详细信息
  14. {
  15. public string slogan;//个性签名
  16. public CustomSuitData customSuitData; //当前搭配套装
  17. public int RoleLvl = 1; //玩家等级
  18. public long RoleExp = 1; //玩家经验
  19. public string SuitCollectPer = "0%"; //套装收集度
  20. public List<PoemPhotoData> showPhotoList = new List<PoemPhotoData>();//会返回固定四个图片信息,未展示则为null
  21. }
  22. }