mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 20:33:35 +08:00
7c114cd69a
Has been failing on master for some time now because .NET 6 is not supported anymore.
26 lines
889 B
C#
26 lines
889 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.Beatmaps
|
|
{
|
|
/// <summary>
|
|
/// Contains information about the current nomination status of a beatmap set.
|
|
/// </summary>
|
|
public class BeatmapSetNominationStatus
|
|
{
|
|
/// <summary>
|
|
/// The current number of nominations that the set has received.
|
|
/// </summary>
|
|
[JsonProperty(@"current")]
|
|
public int Current { get; set; }
|
|
|
|
/// <summary>
|
|
/// The number of nominations required so that the map is eligible for qualification.
|
|
/// </summary>
|
|
[JsonProperty(@"required_meta")]
|
|
public BeatmapSetNominationStatusRequiredMeta RequiredMeta { get; set; } = new BeatmapSetNominationStatusRequiredMeta();
|
|
}
|
|
}
|