// 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.Database { /// /// Beatmap info retrieved for previewing locally without having the beatmap downloaded. /// public class BeatmapOnlineInfo { /// /// 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; } } }