2022-12-30 13:17:24 +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 Newtonsoft.Json;
|
|
|
|
|
2023-01-08 02:54:48 +08:00
|
|
|
namespace osu.Game.Beatmaps
|
2022-12-30 13:17:24 +08:00
|
|
|
{
|
2023-01-08 02:54:48 +08:00
|
|
|
public struct BeatmapSetOnlineNomination
|
2022-12-30 13:17:24 +08:00
|
|
|
{
|
|
|
|
[JsonProperty(@"beatmapset_id")]
|
|
|
|
public int BeatmapsetId { get; set; }
|
|
|
|
|
|
|
|
[JsonProperty(@"reset")]
|
|
|
|
public bool Reset { get; set; }
|
|
|
|
|
|
|
|
[JsonProperty(@"rulesets")]
|
|
|
|
public string[]? Rulesets { get; set; }
|
|
|
|
|
|
|
|
[JsonProperty(@"user_id")]
|
|
|
|
public int UserId { get; set; }
|
|
|
|
}
|
|
|
|
}
|