// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.Collections.Generic; using Newtonsoft.Json; namespace osu.Game.Beatmaps { /// /// Beatmap metrics based on acculumated online data from community plays. /// public class BeatmapMetrics { /// /// Total vote counts of user ratings on a scale of 0..10 where 0 is unused (probably will be fixed at API?). /// public IEnumerable Ratings { get; set; } /// /// Points of failure on a relative time scale (usually 0..100). /// [JsonProperty(@"fail")] public IEnumerable Fails { get; set; } /// /// Points of retry on a relative time scale (usually 0..100). /// [JsonProperty(@"exit")] public IEnumerable Retries { get; set; } } }