///
/// 当前玩家资料。
///
public sealed class BriskPlayerMe
{
///
/// 玩家 ID。
///
public string PlayerId;
///
/// 项目账号 ID。
///
public string ProjectAccountId;
///
/// 登录提供方。
///
public string LoginProvider;
///
/// 登录用户 ID。
///
public string LoginUserId;
///
/// 昵称。
///
public string Nickname;
///
/// 头像地址。
///
public string AvatarUrl;
///
/// 扩展资料。
///
public object ProfileJson;
}