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 SongBestDatum
|
|
|
|
|
{
|
|
|
|
|
public uint Baid { get; set; }
|
|
|
|
|
public uint SongId { get; set; }
|
|
|
|
|
public Difficulty Difficulty { get; set; }
|
|
|
|
|
public uint BestScore { get; set; }
|
|
|
|
|
public uint BestRate { get; set; }
|
|
|
|
|
public CrownType BestCrown { get; set; }
|
|
|
|
|
public ScoreRank BestScoreRank { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual Card? Ba { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|