1234567891011121314151617181920212223242526 |
- using System.Collections.Generic;
- namespace GFGGame
- {
- public class OtherRoleInfoData//其他玩家摘要信息
- {
- public long roleId;
- public string roleName;
- public int roleLv;
- public int roleHead;//头像
- public int roleHeadBorder;//头像框
- 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
- }
- }
|