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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
439 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.
2022-06-17 07:37:17 +00:00
#nullable disable
using System.Collections.Generic;
using Newtonsoft.Json;
2019-11-27 18:56:22 +00:00
using osu.Game.Users;
namespace osu.Game.Online.API.Requests
{
public class GetTopUsersResponse : ResponseWithCursor
{
[JsonProperty("ranking")]
2019-11-27 18:56:22 +00:00
public List<UserStatistics> Users;
}
}