add status column to BeatmapInfo + BeatmapSetInfo

This commit is contained in:
Unknown
2018-09-13 10:10:58 +02:00
parent 221a99d886
commit 13b988053a
5 changed files with 430 additions and 9 deletions

View File

@ -17,9 +17,11 @@ namespace osu.Game.Beatmaps
public int? OnlineBeatmapSetID
{
get { return onlineBeatmapSetID; }
set { onlineBeatmapSetID = value > 0 ? value : null; }
get => onlineBeatmapSetID;
set => onlineBeatmapSetID = value > 0 ? value : null;
}
public BeatmapSetOnlineStatus Status { get; set; } = BeatmapSetOnlineStatus.None;
public BeatmapMetadata Metadata { get; set; }