// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.Collections.Generic; namespace osu.Game.Database { public class BeatmapMetric { /// /// Ratings for a beatmap, length should be 10 /// public IEnumerable Ratings { get; set; } /// /// Fails for a beatmap, length should be 100 /// public IEnumerable Fails { get; set; } /// /// Retries for a beatmap, length should be 100 /// public IEnumerable Retries { get; set; } } }