2024-06-02 19:29:33 -04:00
|
|
|
|
namespace SharedProject.Models.Responses;
|
|
|
|
|
|
|
|
|
|
public class SongLeaderboardResponse
|
|
|
|
|
{
|
2024-06-06 03:29:12 +01:00
|
|
|
|
public List<SongLeaderboard> LeaderboardData { get; set; } = new();
|
2024-06-09 15:12:12 -04:00
|
|
|
|
public SongLeaderboard? UserScore { get; set; } = null;
|
2024-06-04 22:15:58 -04:00
|
|
|
|
public int CurrentPage { get; set; }
|
2024-06-09 15:12:12 -04:00
|
|
|
|
public int TotalPages { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
public int TotalScores { get; set; } = 0;
|
2024-06-02 19:29:33 -04:00
|
|
|
|
}
|