1
0
mirror of synced 2024-11-15 02:47:35 +01:00
TaikoLocalServer/SharedProject/Models/SongLeaderboard.cs

27 lines
657 B
C#
Raw Normal View History

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