27 lines
657 B
C#
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; }
|
|
} |