diff --git a/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs b/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs index 5094ee510f..ec98de2b43 100644 --- a/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs +++ b/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs @@ -42,12 +42,16 @@ namespace osu.Game.Online.Rooms /// /// The order in which this will be played, starting from 0 and increasing for items which will be played later. /// - /// - /// Undefined value for items which are expired. - /// [Key(8)] public int GameplayOrder { get; set; } + /// + /// The date when this was last updated. + /// Not serialised to/from the client. + /// + [IgnoreMember] + public DateTimeOffset UpdatedAt { get; set; } + public MultiplayerPlaylistItem() { }