1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:47:24 +08:00
osu-lazer/osu.Game/Online/API/Requests/GetUserScoresRequest.cs

30 lines
858 B
C#
Raw Normal View History

2017-09-14 19:05:43 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
namespace osu.Game.Online.API.Requests
{
public class GetUserScoresRequest : APIRequest<List<OnlineScore>>
{
private readonly long userId;
private readonly ScoreType type;
private readonly int offset;
2017-09-14 19:05:43 +08:00
public GetUserScoresRequest(long userId, ScoreType type, int offset = 0)
2017-09-14 19:05:43 +08:00
{
this.userId = userId;
this.type = type;
this.offset = offset;
2017-09-14 19:05:43 +08:00
}
protected override string Target => $@"users/{userId}/scores/{type.ToString().ToLower()}?offset={offset}";
2017-09-14 19:05:43 +08:00
}
public enum ScoreType
{
Best,
Firsts,
Recent
}
}