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

20 lines
529 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-27 15:04:07 +00:00
using osu.Game.Users;
namespace osu.Game.Online.API.Requests
{
public class GetUserRequest : APIRequest<User>
{
2017-06-15 13:13:40 +00:00
private long? userId;
2017-06-15 13:13:40 +00:00
public GetUserRequest(long? userId = null)
{
this.userId = userId;
}
protected override string Target => userId.HasValue ? $@"users/{userId}" : @"me";
}
}