1
0
mirror of synced 2025-01-24 23:13:45 +01:00

16 lines
488 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using SharedProject.Enums;
namespace GameDatabase.Entities
{
2024-03-07 19:06:45 +09: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 UserDatum? Ba { get; set; }
}
2023-09-09 21:58:20 +09:00
}