diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-03 23:18:50 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-03 23:18:50 -0500 |
| commit | 40959a816f49d040e16e0178d0e11d51282d98cc (patch) | |
| tree | d93991283d10f87d398e34db79e292eea1bcfa34 /MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | |
| parent | 61a78e2be961a7deb98558f2b872c417b03c885d (diff) | |
more support for episodes directly in a series folder
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ILiveTvManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs index d5b9cea27..4e73fc109 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs @@ -52,6 +52,22 @@ namespace MediaBrowser.Controller.LiveTv QueryResult<ChannelInfoDto> GetChannels(ChannelQuery query); /// <summary> + /// Gets the recording. + /// </summary> + /// <param name="id">The identifier.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task{RecordingInfoDto}.</returns> + Task<RecordingInfoDto> GetRecording(string id, CancellationToken cancellationToken); + + /// <summary> + /// Gets the timer. + /// </summary> + /// <param name="id">The identifier.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task{TimerInfoDto}.</returns> + Task<TimerInfoDto> GetTimer(string id, CancellationToken cancellationToken); + + /// <summary> /// Gets the recordings. /// </summary> /// <param name="query">The query.</param> |
