OtherRoleInfoData.cs 815 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 OtherRoleInfoData roleInfo;
  16. public string slogan;//个性签名
  17. public CustomSuitData customSuitData; //当前搭配套装
  18. public string SuitCollectPer = "0%"; //套装收集度
  19. public List<PoemPhotoData> showPhotoList = new List<PoemPhotoData>();//会返回固定四个图片信息,未展示则为null
  20. }
  21. }