// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using Newtonsoft.Json; namespace osu.Game.Beatmaps { /// /// Contains information about the number of nominations required for a beatmap set. /// public class BeatmapSetNominationRequiredMeta { /// /// The number of nominations required for difficulties of the main ruleset. /// [JsonProperty(@"main_ruleset")] public int MainRuleset { get; set; } /// /// The number of nominations required for difficulties of each non-main ruleset. /// [JsonProperty(@"non_main_ruleset")] public int NonMainRuleset { get; set; } } }