1
0
mirror of synced 2025-01-26 07:53:44 +01:00

27 lines
657 B
C#
Raw Normal View History

2024-06-02 19:29:33 -04:00
using SharedProject.Enums;
namespace SharedProject.Models;
public class SongLeaderboard
{
2024-06-04 23:01:42 -04:00
public int Rank { get; set; }
2024-06-02 19:29:33 -04:00
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; }
}