display current program in tv channel osd

This commit is contained in:
Luke Pulverenti
2015-08-31 00:57:12 -04:00
parent 42712d42aa
commit 8e8ce40de2
4 changed files with 50 additions and 9 deletions

View File

@@ -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);
}
}