1
0
mirror of synced 2025-01-18 15:54:06 +01:00

27 lines
658 B
C#
Raw Normal View History

2024-06-02 19:29:33 -04:00
using SharedProject.Enums;
namespace SharedProject.Models;
public class SongLeaderboard
{
public uint 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; }
}