1
0
mirror of synced 2024-11-28 00:20:53 +01:00
TaikoLocalServer/GameDatabase/Entities/SongBestDatum.cs

17 lines
428 B
C#
Raw Normal View History

2023-09-09 14:58:20 +02:00
using SharedProject.Enums;
namespace GameDatabase.Entities
{
public partial class SongBestDatum
{
public ulong 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; }
}
}