1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00
osu-lazer/osu.Game/Beatmaps/IBeatmapSetOnlineInfo.cs

107 lines
3.1 KiB
C#
Raw Normal View History

2021-10-21 16:14:29 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System;
#nullable enable
2018-04-13 17:19:50 +08:00
namespace osu.Game.Beatmaps
{
/// <summary>
/// Beatmap set info retrieved for previewing locally without having the set downloaded.
/// </summary>
public interface IBeatmapSetOnlineInfo
2018-04-13 17:19:50 +08:00
{
/// <summary>
/// The date this beatmap set was submitted to the online listing.
/// </summary>
DateTimeOffset Submitted { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The date this beatmap set was ranked.
/// </summary>
DateTimeOffset? Ranked { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The date this beatmap set was last updated.
/// </summary>
DateTimeOffset? LastUpdated { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The status of this beatmap set.
/// </summary>
BeatmapSetOnlineStatus Status { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// Whether or not this beatmap set has explicit content.
/// </summary>
bool HasExplicitContent { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// Whether or not this beatmap set has a background video.
/// </summary>
bool HasVideo { get; }
2018-04-13 17:19:50 +08:00
2018-05-31 23:09:19 +08:00
/// <summary>
/// Whether or not this beatmap set has a storyboard.
/// </summary>
bool HasStoryboard { get; }
2018-05-31 23:09:19 +08:00
2018-04-13 17:19:50 +08:00
/// <summary>
/// The different sizes of cover art for this beatmap set.
/// </summary>
BeatmapSetOnlineCovers Covers { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// A small sample clip of this beatmap set's song.
/// </summary>
string Preview { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The beats per minute of this beatmap set's song.
/// </summary>
double BPM { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The amount of plays this beatmap set has.
/// </summary>
int PlayCount { get; }
2018-04-13 17:19:50 +08:00
/// <summary>
/// The amount of people who have favourited this beatmap set.
/// </summary>
int FavouriteCount { get; }
2019-07-22 02:41:07 +08:00
/// <summary>
/// Whether this beatmap set has been favourited by the current user.
/// </summary>
bool HasFavourited { get; }
/// <summary>
/// The availability of this beatmap set.
/// </summary>
BeatmapSetOnlineAvailability Availability { get; }
/// <summary>
2019-07-11 22:47:09 +08:00
/// The song genre of this beatmap set.
/// </summary>
BeatmapSetOnlineGenre Genre { get; }
/// <summary>
2019-07-11 22:47:09 +08:00
/// The song language of this beatmap set.
/// </summary>
BeatmapSetOnlineLanguage Language { get; }
/// <summary>
2021-09-10 11:58:12 +08:00
/// The track ID of this beatmap set.
/// Non-null only if the track is linked to a featured artist track entry.
/// </summary>
int? TrackId { get; }
/// <summary>
/// Total vote counts of user ratings on a scale of 0..10 where 0 is unused (probably will be fixed at API?).
/// </summary>
int[]? Ratings { get; }
2018-04-13 17:19:50 +08:00
}
}