// 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 set info retrieved for previewing locally without having the set downloaded. /// public class BeatmapSetOnlineInfo { /// /// The different sizes of cover art for this beatmap set. /// [JsonProperty(@"covers")] public BeatmapSetOnlineCovers Covers { get; set; } /// /// A small sample clip of this beatmap set's song. /// [JsonProperty(@"previewUrl")] public string Preview { get; set; } /// /// The amount of plays this beatmap set has. /// [JsonProperty(@"play_count")] public int PlayCount { get; set; } /// /// The amount of people who have favourited this beatmap set. /// [JsonProperty(@"favourite_count")] public int FavouriteCount { get; set; } } public class BeatmapSetOnlineCovers { public string Cover { get; set; } [JsonProperty(@"cover@2x")] public string Cover2X { get; set; } public string Card { get; set; } [JsonProperty(@"card@2x")] public string Card2X { get; set; } public string List { get; set; } [JsonProperty(@"list@2x")] public string List2X { get; set; } } }