Rename APIPlaylistItem -> MultiplayerPlaylistItem

This commit is contained in:
Dan Balasescu
2021-11-15 23:14:27 +09:00
parent 5a1036a96a
commit f743a3647f
7 changed files with 21 additions and 21 deletions

View File

@ -13,7 +13,7 @@ namespace osu.Game.Online.Rooms
{
[Serializable]
[MessagePackObject]
public class APIPlaylistItem
public class MultiplayerPlaylistItem
{
[Key(0)]
public long ID { get; set; }
@ -39,11 +39,11 @@ namespace osu.Game.Online.Rooms
[Key(7)]
public bool Expired { get; set; }
public APIPlaylistItem()
public MultiplayerPlaylistItem()
{
}
public APIPlaylistItem(PlaylistItem item)
public MultiplayerPlaylistItem(PlaylistItem item)
{
ID = item.ID;
BeatmapID = item.BeatmapID;