// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using Newtonsoft.Json; 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; } /// /// Whether or not this beatmap has a background video. /// public bool HasVideo { get; set; } /// /// The amount of circles in this beatmap. /// [JsonProperty(@"count_circles")] public int CircleCount { get; set; } /// /// The amount of sliders in this beatmap. /// [JsonProperty(@"count_sliders")] public int SliderCount { get; set; } /// /// The amount of plays this beatmap has. /// [JsonProperty(@"playcount")] public int PlayCount { get; set; } /// /// The amount of passes this beatmap has. /// [JsonProperty(@"passcount")] public int PassCount { get; set; } } }