2017-05-20 02:43:18 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2017-07-26 12:22:46 +08:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-05-20 02:43:18 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-05-20 06:05:54 +08:00
|
|
|
|
/// Beatmap info retrieved for previewing locally without having the beatmap downloaded.
|
2017-05-20 02:43:18 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class BeatmapOnlineInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The amount of plays this beatmap has.
|
|
|
|
|
/// </summary>
|
2017-05-28 11:37:55 +08:00
|
|
|
|
[JsonProperty(@"playcount")]
|
2017-05-20 02:43:18 +08:00
|
|
|
|
public int PlayCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-05-28 11:37:55 +08:00
|
|
|
|
/// The amount of passes this beatmap has.
|
2017-05-20 02:43:18 +08:00
|
|
|
|
/// </summary>
|
2017-05-28 11:37:55 +08:00
|
|
|
|
[JsonProperty(@"passcount")]
|
|
|
|
|
public int PassCount { get; set; }
|
2017-05-20 02:43:18 +08:00
|
|
|
|
}
|
|
|
|
|
}
|