aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-25 11:15:31 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-25 11:15:31 -0500
commit4054846a6e2ac93a082a22e03f183296a27a0cba (patch)
treef2c642a26a63758199cc77c6fe25f9d4c29825aa /MediaBrowser.Controller
parentfe7b8a0d96d3cd979fade6202856c94420f6256e (diff)
updated nuget for live tv
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/LiveTv/ILiveTvManager.cs7
-rw-r--r--MediaBrowser.Controller/LiveTv/ILiveTvService.cs8
2 files changed, 11 insertions, 4 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs
index 5ec2f2c4a1..339367c170 100644
--- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs
+++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs
@@ -40,5 +40,12 @@ namespace MediaBrowser.Controller.LiveTv
/// <param name="id">The identifier.</param>
/// <returns>Channel.</returns>
Channel GetChannel(string id);
+
+ /// <summary>
+ /// Gets the programs.
+ /// </summary>
+ /// <param name="query">The query.</param>
+ /// <returns>IEnumerable{ProgramInfo}.</returns>
+ IEnumerable<ProgramInfo> GetPrograms(ProgramQuery query);
}
}
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs
index 56d98d5184..53cb514b52 100644
--- a/MediaBrowser.Controller/LiveTv/ILiveTvService.cs
+++ b/MediaBrowser.Controller/LiveTv/ILiveTvService.cs
@@ -61,11 +61,11 @@ namespace MediaBrowser.Controller.LiveTv
Task<IEnumerable<RecordingInfo>> GetRecordingsAsync(RecordingQuery query, CancellationToken cancellationToken);
/// <summary>
- /// Gets the channel guides.
+ /// Gets the channel guide.
/// </summary>
- /// <param name="channelIdList">The channel identifier list.</param>
+ /// <param name="channelId">The channel identifier.</param>
/// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task{IEnumerable{ChannelGuide}}.</returns>
- Task<IEnumerable<ChannelGuide>> GetChannelGuidesAsync(IEnumerable<string> channelIdList, CancellationToken cancellationToken);
+ /// <returns>Task{IEnumerable{ProgramInfo}}.</returns>
+ Task<IEnumerable<ProgramInfo>> GetChannelGuideAsync(string channelId, CancellationToken cancellationToken);
}
}