2017-02-07 12:59:30 +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
|
2016-12-01 15:44:24 +08:00
|
|
|
|
|
2017-03-27 23:04:07 +08:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
2016-12-01 15:44:24 +08:00
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
|
|
|
|
public class GetUserRequest : APIRequest<User>
|
|
|
|
|
{
|
2017-06-15 21:13:40 +08:00
|
|
|
|
private long? userId;
|
2016-12-01 15:44:24 +08:00
|
|
|
|
|
2017-06-15 21:13:40 +08:00
|
|
|
|
public GetUserRequest(long? userId = null)
|
2016-12-01 15:44:24 +08:00
|
|
|
|
{
|
|
|
|
|
this.userId = userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string Target => userId.HasValue ? $@"users/{userId}" : @"me";
|
|
|
|
|
}
|
|
|
|
|
}
|