Fix response value

This commit is contained in:
smoogipoo
2020-06-03 12:54:07 +09:00
parent a606f41297
commit 13622eff1f
3 changed files with 10 additions and 3 deletions

View File

@ -2,10 +2,11 @@
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using Newtonsoft.Json;
namespace osu.Game.Online.API.Requests
{
public class GetRoomPlaylistScoresRequest : APIRequest<List<RoomScore>>
public class GetRoomPlaylistScoresRequest : APIRequest<RoomPlaylistScores>
{
private readonly int roomId;
private readonly int playlistItemId;
@ -18,4 +19,10 @@ namespace osu.Game.Online.API.Requests
protected override string Target => $@"rooms/{roomId}/playlist/{playlistItemId}/scores";
}
public class RoomPlaylistScores
{
[JsonProperty("scores")]
public List<RoomScore> Scores { get; set; }
}
}