osu/osu.Game/Online/API/Requests/GetUserScoresRequest.cs

33 lines
956 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
using System.Collections.Generic;
using osu.Game.Online.API.Requests.Responses;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Online.API.Requests
{
2018-11-28 09:33:01 +00:00
public class GetUserScoresRequest : APIRequest<List<APIScoreInfo>>
2018-04-13 09:19:50 +00:00
{
private readonly long userId;
private readonly ScoreType type;
private readonly int offset;
public GetUserScoresRequest(long userId, ScoreType type, int offset = 0)
{
this.userId = userId;
this.type = type;
this.offset = offset;
}
// ReSharper disable once ImpureMethodCallOnReadonlyValueField
2018-07-25 05:37:05 +00:00
protected override string Target => $@"users/{userId}/scores/{type.ToString().ToLowerInvariant()}?offset={offset}";
2018-04-13 09:19:50 +00:00
}
public enum ScoreType
{
Best,
Firsts,
Recent
}
}