From 76ed60605b03e14672afd54370d6bb1fc6e7544a Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 21 Aug 2014 11:55:35 -0400 Subject: update chromecast --- .../MediaBrowser.Controller.csproj | 1 - .../Playlists/IPlaylistManager.cs | 3 ++- .../Playlists/PlaylistCreationOptions.cs | 20 -------------------- 3 files changed, 2 insertions(+), 22 deletions(-) delete mode 100644 MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/MediaBrowser.Controller.csproj b/MediaBrowser.Controller/MediaBrowser.Controller.csproj index c7dd2cd5f3..66c6d39eea 100644 --- a/MediaBrowser.Controller/MediaBrowser.Controller.csproj +++ b/MediaBrowser.Controller/MediaBrowser.Controller.csproj @@ -222,7 +222,6 @@ - diff --git a/MediaBrowser.Controller/Playlists/IPlaylistManager.cs b/MediaBrowser.Controller/Playlists/IPlaylistManager.cs index f5939ad969..c67a8a3d5b 100644 --- a/MediaBrowser.Controller/Playlists/IPlaylistManager.cs +++ b/MediaBrowser.Controller/Playlists/IPlaylistManager.cs @@ -1,4 +1,5 @@ using MediaBrowser.Controller.Entities; +using MediaBrowser.Model.Playlists; using System.Collections.Generic; using System.Threading.Tasks; @@ -18,7 +19,7 @@ namespace MediaBrowser.Controller.Playlists /// /// The options. /// Task<Playlist>. - Task CreatePlaylist(PlaylistCreationOptions options); + Task CreatePlaylist(PlaylistCreationRequest options); /// /// Adds to playlist. diff --git a/MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs b/MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs deleted file mode 100644 index 1766ba75ca..0000000000 --- a/MediaBrowser.Controller/Playlists/PlaylistCreationOptions.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.Controller.Playlists -{ - public class PlaylistCreationOptions - { - public string Name { get; set; } - - public List ItemIdList { get; set; } - - public string MediaType { get; set; } - - public string UserId { get; set; } - - public PlaylistCreationOptions() - { - ItemIdList = new List(); - } - } -} -- cgit v1.2.3