APICommentsController -> CommentBundle

This commit is contained in:
Andrei Zavatski 2019-10-15 11:20:06 +03:00
parent 75a2e383f2
commit 3c714dc013
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ using osu.Game.Overlays.Comments;
namespace osu.Game.Online.API.Requests
{
public class GetCommentsRequest : APIRequest<APICommentsController>
public class GetCommentsRequest : APIRequest<CommentBundle>
{
private readonly long id;
private readonly int page;

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
namespace osu.Game.Online.API.Requests.Responses
{
public class APICommentsController
public class CommentBundle
{
private List<Comment> comments;

View File

@ -139,7 +139,7 @@ namespace osu.Game.Overlays.Comments
api.Queue(request);
}
private void onSuccess(APICommentsController response, bool initial)
private void onSuccess(CommentBundle response, bool initial)
{
loadCancellation = new CancellationTokenSource();