2020-11-06 11:54:08 +08:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using Newtonsoft.Json;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-11-06 11:54:08 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
{
|
|
|
|
public class GetUsersResponse : ResponseWithCursor
|
|
|
|
{
|
|
|
|
[JsonProperty("users")]
|
2021-11-04 17:02:44 +08:00
|
|
|
public List<APIUser> Users;
|
2020-11-06 11:54:08 +08:00
|
|
|
}
|
|
|
|
}
|