123456789101112131415161718192021222324252627 |
- 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 = "";//头像资源,机器人用
- public long offlineTimeSec;//离线时间戳,单位秒,0表示在线
- }
- public class OtherRoleInfoDetailData//其他玩家详细信息
- {
- public OtherRoleInfoData roleInfo;
- public string slogan;//个性签名
- public CustomSuitData customSuitData; //当前搭配套装
- public string SuitCollectPer = "0%"; //套装收集度
- public List<PoemPhotoData> showPhotoList = new List<PoemPhotoData>();//会返回固定四个图片信息,未展示则为null
- }
- }
|