OtherRoleInfoData.cs 891 B

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