1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 06:29:54 +08:00
Files
osu-lazer/osu.Game/Online/API/Requests/Responses/APIMatchmakingPool.cs
T
Dan Balasescu 93b7c3324d Add matchmaking profile badge (#37241)
Using the same styling as osu!web + daily challenge.

<img width="1920" height="1034" alt="Screenshot_20260409-164600"
src="https://github.com/user-attachments/assets/97e2270e-af9f-478d-b2d6-c9fb8be16720"
/>

---------

Co-authored-by: Dean Herbert <pe@ppy.sh>
2026-04-09 19:25:21 +09:00

26 lines
666 B
C#

// 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 Newtonsoft.Json;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIMatchmakingPool
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("name")]
public string Name { get; set; } = string.Empty;
[JsonProperty("active")]
public bool Active { get; set; }
[JsonProperty("ruleset_id")]
public int RulesetId { get; set; }
[JsonProperty("variant_id")]
public int VariantId { get; set; }
}
}