// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using Newtonsoft.Json; namespace osu.Game.Beatmaps { /// /// Beatmap metrics based on accumulated online data from community plays. /// public class BeatmapMetrics { /// /// Points of failure on a relative time scale (usually 0..100). /// [JsonProperty(@"fail")] public int[] Fails { get; set; } = Array.Empty(); /// /// Points of retry on a relative time scale (usually 0..100). /// [JsonProperty(@"exit")] public int[] Retries { get; set; } = Array.Empty(); } }