From 91e4f67139e30e8a1c873af802e7fa70d960671f Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 17 Jan 2014 13:23:00 -0500 Subject: add more properties to LiveTvInfo --- MediaBrowser.Model/ApiClient/IApiClient.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs') 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 /// The options. /// System.String. string GetImageUrl(RecordingInfoDto item, ImageOptions options); + + /// + /// Gets the image URL. + /// + /// The item. + /// The options. + /// System.String. + string GetImageUrl(ProgramInfoDto item, ImageOptions options); /// /// Gets an image url that can be used to download an image from the api @@ -1002,6 +1010,14 @@ namespace MediaBrowser.Model.ApiClient /// Task{QueryResult{TimerInfoDto}}. Task> GetLiveTvTimersAsync(TimerQuery query, CancellationToken cancellationToken); + /// + /// Gets the live tv programs asynchronous. + /// + /// The query. + /// The cancellation token. + /// Task{QueryResult{ProgramInfoDto}}. + Task> GetLiveTvProgramsAsync(ProgramQuery query, CancellationToken cancellationToken); + /// /// Gets the live tv timer asynchronous. /// -- cgit v1.2.3