1
0
mirror of synced 2024-11-14 18:38:06 +01:00
TaikoLocalServer/SharedProject/Models/SongLeaderboard.cs
2024-06-04 23:01:42 -04:00

27 lines
657 B
C#

using SharedProject.Enums;
namespace SharedProject.Models;
public class SongLeaderboard
{
public int Rank { get; set; }
public uint Baid { get; set; }
public uint BestScore { get; set; }
public uint BestRate { get; set; }
public CrownType BestCrown { get; set; }
public ScoreRank BestScoreRank { 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; }
public uint DrumrollCount { get; set; }
public string? UserName { get; set; }
}