From e0c387446b2562ac6b153d36d357a71e70fa736b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 9 Aug 2013 21:16:31 -0400 Subject: reworked iso manager --- MediaBrowser.Model/ApiClient/IApiClient.cs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'MediaBrowser.Model/ApiClient') diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index c2b0289eab..7180ed5bcd 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -176,6 +176,34 @@ namespace MediaBrowser.Model.ApiClient /// query Task GetItemsAsync(ItemQuery query); + /// + /// Gets the instant mix from song async. + /// + /// The query. + /// Task{ItemsResult}. + Task GetInstantMixFromSongAsync(SimilarItemsQuery query); + + /// + /// Gets the instant mix from album async. + /// + /// The query. + /// Task{ItemsResult}. + Task GetInstantMixFromAlbumAsync(SimilarItemsQuery query); + + /// + /// Gets the instant mix from artist async. + /// + /// The query. + /// Task{ItemsResult}. + Task GetInstantMixFromArtistAsync(SimilarItemsByNameQuery query); + + /// + /// Gets the instant mix from music genre async. + /// + /// The query. + /// Task{ItemsResult}. + Task GetInstantMixFromMusicGenreAsync(SimilarItemsByNameQuery query); + /// /// Gets the similar movies async. /// -- cgit v1.2.3