// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE namespace osu.Game.Beatmaps { /// /// Beatmap info retrieved for previewing locally without having the beatmap downloaded. /// public class BeatmapOnlineInfo { /// /// The length in milliseconds of this beatmap's song. /// public double Length { get; set; } /// /// The amount of circles in this beatmap. /// public int CircleCount { get; set; } /// /// The amount of sliders in this beatmap. /// public int SliderCount { get; set; } /// /// The amount of plays this beatmap has. /// public int PlayCount { get; set; } /// /// The amount of passes this beatmap has. /// public int PassCount { get; set; } } }