mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 12:01:36 +08:00
23 lines
662 B
C#
23 lines
662 B
C#
using LiteDB;
|
|
using System;
|
|
|
|
namespace EasyTools.DataBase.Serialization
|
|
{
|
|
[Serializable]
|
|
public class PlayerData
|
|
{
|
|
public string NickName { get; set; }
|
|
public DateTime LastJoinedTime { get; set; }
|
|
public DateTime LastLeftTime { get; set; }
|
|
public int PlayedTimes { get; set; }
|
|
public int PlayerKills { get; set; }
|
|
public int PlayerDeath { get; set; }
|
|
public int PlayerSCPKills { get; set; }
|
|
public float PlayerDamage { get; set; }
|
|
public int RolePlayed { get; set; }
|
|
public int PlayerShot { get; set; }
|
|
[BsonId]
|
|
public string ID { get; set; }
|
|
}
|
|
}
|