From 9821faf5661f4ed06fbc46219bfa843885a1c9bd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 10 Jul 2013 16:06:11 -0400 Subject: Added new theme song/video endpoints --- MediaBrowser.Model/ApiClient/IApiClient.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'MediaBrowser.Model/ApiClient') diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 839fb01245..9c4a0f364f 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -23,6 +23,33 @@ namespace MediaBrowser.Model.ApiClient /// event EventHandler HttpResponseReceived; + /// + /// Gets the theme songs async. + /// + /// The user id. + /// The item id. + /// if set to true [inherit from parents]. + /// Task{ThemeMediaResult}. + Task GetThemeSongsAsync(string userId, string itemId, bool inheritFromParents); + + /// + /// Gets the theme videos async. + /// + /// The user id. + /// The item id. + /// if set to true [inherit from parents]. + /// Task{ThemeMediaResult}. + Task GetThemeVideosAsync(string userId, string itemId, bool inheritFromParents); + + /// + /// Gets all theme media async. + /// + /// The user id. + /// The item id. + /// if set to true [inherit from parents]. + /// Task{AllThemeMediaResult}. + Task GetAllThemeMediaAsync(string userId, string itemId, bool inheritFromParents); + /// /// Marks the notifications read. /// -- cgit v1.2.3