Update dependencies

This commit is contained in:
Andrei Zavatski
2019-10-13 11:23:49 +03:00
6 changed files with 85 additions and 23 deletions

View File

@ -13,9 +13,9 @@ namespace osu.Game.Online.API.Requests
private readonly long id;
private readonly int page;
private readonly CommentableType type;
private readonly SortCommentsBy sort;
private readonly CommentsSortCriteria sort;
public GetCommentsRequest(CommentableType type, long id, SortCommentsBy sort = SortCommentsBy.New, int page = 1)
public GetCommentsRequest(CommentableType type, long id, CommentsSortCriteria sort = CommentsSortCriteria.New, int page = 1)
{
this.type = type;
this.sort = sort;