1
0
mirror of synced 2025-01-30 03:47:28 +01:00

18 lines
485 B
C#

using SharedProject.Enums;
namespace GameDatabase.Entities
{
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; }
}
}