diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-17 13:23:00 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-17 13:23:00 -0500 |
| commit | 91e4f67139e30e8a1c873af802e7fa70d960671f (patch) | |
| tree | e3e48ae08c8919074d2043e520720f20f2a0f41a /MediaBrowser.Model/ApiClient/IApiClient.cs | |
| parent | 43a806ad0265a537e7dc730d277cf4debe3e7dd5 (diff) | |
add more properties to LiveTvInfo
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index edabd4aba..cf90fb757 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -764,6 +764,14 @@ namespace MediaBrowser.Model.ApiClient /// <param name="options">The options.</param> /// <returns>System.String.</returns> string GetImageUrl(RecordingInfoDto item, ImageOptions options); + + /// <summary> + /// Gets the image URL. + /// </summary> + /// <param name="item">The item.</param> + /// <param name="options">The options.</param> + /// <returns>System.String.</returns> + string GetImageUrl(ProgramInfoDto item, ImageOptions options); /// <summary> /// Gets an image url that can be used to download an image from the api @@ -1003,6 +1011,14 @@ namespace MediaBrowser.Model.ApiClient Task<QueryResult<TimerInfoDto>> GetLiveTvTimersAsync(TimerQuery query, CancellationToken cancellationToken); /// <summary> + /// Gets the 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>> GetLiveTvProgramsAsync(ProgramQuery query, CancellationToken cancellationToken); + + /// <summary> /// Gets the live tv timer asynchronous. /// </summary> /// <param name="id">The identifier.</param> |
