// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. 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; } } }