diff --git a/osu.Game/Beatmaps/IBeatmapSetOnlineInfo.cs b/osu.Game/Beatmaps/IBeatmapSetOnlineInfo.cs
index 7f1ba41fb6..86859a0dc3 100644
--- a/osu.Game/Beatmaps/IBeatmapSetOnlineInfo.cs
+++ b/osu.Game/Beatmaps/IBeatmapSetOnlineInfo.cs
@@ -10,87 +10,87 @@ namespace osu.Game.Beatmaps
///
/// The date this beatmap set was submitted to the online listing.
///
- public DateTimeOffset Submitted { get; set; }
+ DateTimeOffset Submitted { get; set; }
///
/// The date this beatmap set was ranked.
///
- public DateTimeOffset? Ranked { get; set; }
+ DateTimeOffset? Ranked { get; set; }
///
/// The date this beatmap set was last updated.
///
- public DateTimeOffset? LastUpdated { get; set; }
+ DateTimeOffset? LastUpdated { get; set; }
///
/// The status of this beatmap set.
///
- public BeatmapSetOnlineStatus Status { get; set; }
+ BeatmapSetOnlineStatus Status { get; set; }
///
/// Whether or not this beatmap set has explicit content.
///
- public bool HasExplicitContent { get; set; }
+ bool HasExplicitContent { get; set; }
///
/// Whether or not this beatmap set has a background video.
///
- public bool HasVideo { get; set; }
+ bool HasVideo { get; set; }
///
/// Whether or not this beatmap set has a storyboard.
///
- public bool HasStoryboard { get; set; }
+ bool HasStoryboard { get; set; }
///
/// The different sizes of cover art for this beatmap set.
///
- public BeatmapSetOnlineCovers Covers { get; set; }
+ BeatmapSetOnlineCovers Covers { get; set; }
///
/// A small sample clip of this beatmap set's song.
///
- public string Preview { get; set; }
+ string Preview { get; set; }
///
/// The beats per minute of this beatmap set's song.
///
- public double BPM { get; set; }
+ double BPM { get; set; }
///
/// The amount of plays this beatmap set has.
///
- public int PlayCount { get; set; }
+ int PlayCount { get; set; }
///
/// The amount of people who have favourited this beatmap set.
///
- public int FavouriteCount { get; set; }
+ int FavouriteCount { get; set; }
///
/// Whether this beatmap set has been favourited by the current user.
///
- public bool HasFavourited { get; set; }
+ bool HasFavourited { get; set; }
///
/// The availability of this beatmap set.
///
- public BeatmapSetOnlineAvailability Availability { get; set; }
+ BeatmapSetOnlineAvailability Availability { get; set; }
///
/// The song genre of this beatmap set.
///
- public BeatmapSetOnlineGenre Genre { get; set; }
+ BeatmapSetOnlineGenre Genre { get; set; }
///
/// The song language of this beatmap set.
///
- public BeatmapSetOnlineLanguage Language { get; set; }
+ BeatmapSetOnlineLanguage Language { get; set; }
///
/// The track ID of this beatmap set.
/// Non-null only if the track is linked to a featured artist track entry.
///
- public int? TrackId { get; set; }
+ int? TrackId { get; set; }
}
-}
\ No newline at end of file
+}