aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-31 00:57:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-31 00:57:12 -0400
commit8e8ce40de20c2d85e09a33c8345b7dbac0a6419d (patch)
tree2164e9338a7d50b04f2f00c863e609e15d38129e /MediaBrowser.Controller
parent42712d42aa123e54ef577dd6ad85792b1130fb05 (diff)
display current program in tv channel osd
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/LiveTv/ILiveTvManager.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs
index 2b121eeeb..1458c1bc2 100644
--- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs
+++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs
@@ -372,5 +372,14 @@ namespace MediaBrowser.Controller.LiveTv
/// <param name="feature">The feature.</param>
/// <returns>Task&lt;MBRegistrationRecord&gt;.</returns>
Task<MBRegistrationRecord> GetRegistrationInfo(string channelId, string programId, string feature);
+
+ /// <summary>
+ /// Adds the channel information.
+ /// </summary>
+ /// <param name="dto">The dto.</param>
+ /// <param name="channel">The channel.</param>
+ /// <param name="options">The options.</param>
+ /// <param name="user">The user.</param>
+ void AddChannelInfo(BaseItemDto dto, LiveTvChannel channel, DtoOptions options, User user);
}
}