using Fantasy.Entitas;
using MongoDB.Bson.Serialization.Attributes;
namespace NB;
///
/// 角色统计数据
///
public class PlayerStatistics : Entity
{
///
/// 登录次数
///
public uint LoginCount;
///
/// 最后登录时间
///
public long LoginTime;
///
/// 在线时间
///
public long OnlineTime;
///
/// 账号创建时间
///
public long CreateTime;
///
/// 钓鱼个数
///
public int FishCount;
}