Better BeatmapSetOnlineInfo comments.

This commit is contained in:
DrabWeb 2017-07-11 00:28:25 -03:00
parent 84701846ec
commit 69b290519f

View File

@ -11,25 +11,25 @@ namespace osu.Game.Database
public class BeatmapSetOnlineInfo public class BeatmapSetOnlineInfo
{ {
/// <summary> /// <summary>
/// The different sizes of cover art for this beatmap. /// The different sizes of cover art for this beatmap set.
/// </summary> /// </summary>
[JsonProperty(@"covers")] [JsonProperty(@"covers")]
public BeatmapSetOnlineCovers Covers { get; set; } public BeatmapSetOnlineCovers Covers { get; set; }
/// <summary> /// <summary>
/// A small sample clip of this beatmap's song. /// A small sample clip of this beatmap set's song.
/// </summary> /// </summary>
[JsonProperty(@"previewUrl")] [JsonProperty(@"previewUrl")]
public string Preview { get; set; } public string Preview { get; set; }
/// <summary> /// <summary>
/// The amount of plays this set has. /// The amount of plays this beatmap set has.
/// </summary> /// </summary>
[JsonProperty(@"play_count")] [JsonProperty(@"play_count")]
public int PlayCount { get; set; } public int PlayCount { get; set; }
/// <summary> /// <summary>
/// The amount of people who have favourited this map. /// The amount of people who have favourited this beatmap set.
/// </summary> /// </summary>
[JsonProperty(@"favourite_count")] [JsonProperty(@"favourite_count")]
public int FavouriteCount { get; set; } public int FavouriteCount { get; set; }