diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-17 15:51:29 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-17 15:51:29 -0500 |
| commit | fb335141fb9cb2b2ed626e2ffb555fccb26b3edf (patch) | |
| tree | 57d621fddd079d8821f1e1fe96d75665d65175d5 /MediaBrowser.Model/ApiClient/IApiClient.cs | |
| parent | 33d99575940ac97574d328ab9c6143bb3ccb9e8e (diff) | |
display tv service version info
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index cf90fb757..1e54e2dae 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -1017,6 +1017,14 @@ namespace MediaBrowser.Model.ApiClient /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task{QueryResult{ProgramInfoDto}}.</returns> Task<QueryResult<ProgramInfoDto>> GetLiveTvProgramsAsync(ProgramQuery query, CancellationToken cancellationToken); + + /// <summary> + /// Gets the recommended live tv programs asynchronous. + /// </summary> + /// <param name="query">The query.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task{QueryResult{ProgramInfoDto}}.</returns> + Task<QueryResult<ProgramInfoDto>> GetRecommendedLiveTvProgramsAsync(RecommendedProgramQuery query, CancellationToken cancellationToken); /// <summary> /// Gets the live tv timer asynchronous. |
