新增私聊相关
This commit is contained in:
@@ -4,6 +4,9 @@ using MongoDB.Bson.Serialization.Options;
|
||||
|
||||
namespace NB.Game;
|
||||
|
||||
/// <summary>
|
||||
/// 玩家基本数据
|
||||
/// </summary>
|
||||
public sealed class Player : Entity
|
||||
{
|
||||
/// <summary>
|
||||
@@ -37,39 +40,15 @@ public sealed class Player : Entity
|
||||
[BsonElement("vip")] public bool IsVip;
|
||||
|
||||
/// <summary>
|
||||
/// 统计信息
|
||||
/// 星数
|
||||
/// </summary>
|
||||
[BsonElement("stat")] public PlayerStatistics Statistics;
|
||||
[BsonElement("star")] public int Star;
|
||||
|
||||
/// <summary>
|
||||
/// 角色vip信息
|
||||
/// 高光数
|
||||
/// </summary>
|
||||
[BsonElement("vInfo")] public PlayerVip Vip;
|
||||
[BsonElement("high")] public int Highlight;
|
||||
|
||||
/// <summary>
|
||||
/// 钱包
|
||||
/// </summary>
|
||||
[BsonElement("wallet")] public PlayerWallet Wallet;
|
||||
|
||||
/// <summary>
|
||||
/// 背包
|
||||
/// </summary>
|
||||
[BsonElement("bag")] public ItemContainer ItemContainer;
|
||||
|
||||
/// <summary>
|
||||
/// 鱼护
|
||||
/// </summary>
|
||||
[BsonElement("fish")] public FishContainer FishContainer;
|
||||
|
||||
/// <summary>
|
||||
/// 技能
|
||||
/// </summary>
|
||||
[BsonElement("skill")] public SkillContainer SkillContainer;
|
||||
|
||||
/// <summary>
|
||||
/// 成就
|
||||
/// </summary>
|
||||
[BsonElement("achievement")] public AchievementContainer AchievementContainer;
|
||||
|
||||
[BsonIgnore] public long SessionRunTimeId;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user