OtherRoleInfoData.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. private long _offlineTimeSec = 0;
  13. public long offlineTimeSec
  14. {
  15. get
  16. {
  17. return _offlineTimeSec * 1000;
  18. }
  19. set
  20. {
  21. _offlineTimeSec = value;
  22. }
  23. }//离线时间戳,单位毫秒,0表示在线
  24. }
  25. public class OtherRoleInfoDetailData//其他玩家详细信息
  26. {
  27. public OtherRoleInfoData roleInfo;
  28. public string slogan;//个性签名
  29. public CustomSuitData customSuitData; //当前搭配套装
  30. public string SuitCollectPer = "0%"; //套装收集度
  31. public List<PoemPhotoData> showPhotoList = new List<PoemPhotoData>();//会返回固定四个图片信息,未展示则为null
  32. }
  33. }