// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using Newtonsoft.Json; using System.Collections.Generic; namespace osu.Game.Database { /// /// Beatmap info retrieved for previewing locally without having the beatmap downloaded. /// public class BeatmapOnlineInfo { /// /// The different sizes of cover art for this beatmap: cover, cover@2x, card, card@2x, list, list@2x. /// [JsonProperty(@"covers")] public IEnumerable Covers { get; set; } /// /// A small sample clip of this beatmap's song. /// [JsonProperty(@"previewUrl")] public string Preview { get; set; } /// /// The amount of plays this beatmap has. /// [JsonProperty(@"play_count")] public int PlayCount { get; set; } /// /// The amount of people who have favourited this map. /// [JsonProperty(@"favourite_count")] public int FavouriteCount { get; set; } } }