2022-10-27 00:42:11 +08:00
|
|
|
|
using SharedProject.Enums;
|
|
|
|
|
|
|
|
|
|
namespace GameDatabase.Entities
|
2022-08-25 15:36:23 +08:00
|
|
|
|
{
|
|
|
|
|
public partial class SongPlayDatum
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public uint Baid { get; set; }
|
2022-10-27 00:42:41 +08:00
|
|
|
|
|
2022-08-28 00:34:27 +08:00
|
|
|
|
public uint SongNumber { get; set; }
|
2022-10-27 00:42:41 +08:00
|
|
|
|
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public uint SongId { get; set; }
|
|
|
|
|
public Difficulty Difficulty { get; set; }
|
|
|
|
|
public CrownType Crown { get; set; }
|
|
|
|
|
public uint Score { get; set; }
|
|
|
|
|
public uint ScoreRate { get; set; }
|
|
|
|
|
public ScoreRank ScoreRank { get; set; }
|
|
|
|
|
public uint GoodCount { get; set; }
|
|
|
|
|
public uint OkCount { get; set; }
|
|
|
|
|
public uint MissCount { get; set; }
|
|
|
|
|
public uint ComboCount { get; set; }
|
|
|
|
|
public uint HitCount { get; set; }
|
2022-09-10 14:35:17 +08:00
|
|
|
|
public uint DrumrollCount { get; set; }
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public bool Skipped { get; set; }
|
|
|
|
|
public DateTime PlayTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual Card? Ba { get; set; }
|
|
|
|
|
}
|
2022-10-27 00:42:41 +08:00
|
|
|
|
}
|