12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System.Collections.Generic;
- namespace GFGGame
- {
- public class OtherRoleInfoData//其他玩家摘要信息
- {
- public long roleId;//机器人为0
- public string roleName;
- public int roleLv;
- public int headId;//头像
- public int headBorderId;//头像框
- public string headRes = "";//头像资源,机器人用
- private long _offlineTimeSec = 0;
- public long offlineTimeSec
- {
- get
- {
- return _offlineTimeSec * 1000;
- }
- set
- {
- _offlineTimeSec = value;
- }
- }//离线时间戳,单位毫秒,0表示在线
- public string leagueName;
- public List<int> itemList = new List<int>();
- public int suitCollect;
- public int cardCollect;
- public int achievementTaskCollect;
- public long roleExp;
- }
- public class OtherRoleInfoDetailData//其他玩家详细信息
- {
- public OtherRoleInfoData roleInfo;
- public string slogan;//个性签名
- public CustomSuitData customSuitData; //当前搭配套装
- public string SuitCollectPer = "0%"; //套装收集度
- public List<PoemPhotoData> showPhotoList = new List<PoemPhotoData>();//会返回固定四个图片信息,未展示则为null
- }
- }
|