diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-31 00:57:12 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-31 00:57:12 -0400 |
| commit | 8e8ce40de20c2d85e09a33c8345b7dbac0a6419d (patch) | |
| tree | 2164e9338a7d50b04f2f00c863e609e15d38129e /MediaBrowser.Controller | |
| parent | 42712d42aa123e54ef577dd6ad85792b1130fb05 (diff) | |
display current program in tv channel osd
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | 9 |
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<MBRegistrationRecord>.</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); } } |
