diff --git a/osu.Game/Online/Rooms/APIPlaylistItem.cs b/osu.Game/Online/Rooms/APIPlaylistItem.cs index e9803a3a10..eddce69976 100644 --- a/osu.Game/Online/Rooms/APIPlaylistItem.cs +++ b/osu.Game/Online/Rooms/APIPlaylistItem.cs @@ -19,21 +19,24 @@ namespace osu.Game.Online.Rooms public long ID { get; set; } [Key(1)] - public int BeatmapID { get; set; } + public int UserID { get; set; } [Key(2)] - public string BeatmapChecksum { get; set; } = string.Empty; + public int BeatmapID { get; set; } [Key(3)] - public int RulesetID { get; set; } + public string BeatmapChecksum { get; set; } = string.Empty; [Key(4)] - public IEnumerable RequiredMods { get; set; } = Enumerable.Empty(); + public int RulesetID { get; set; } [Key(5)] - public IEnumerable AllowedMods { get; set; } = Enumerable.Empty(); + public IEnumerable RequiredMods { get; set; } = Enumerable.Empty(); [Key(6)] + public IEnumerable AllowedMods { get; set; } = Enumerable.Empty(); + + [Key(7)] public bool Expired { get; set; } public APIPlaylistItem()