#pragma warning disable CS1591 using MediaBrowser.Controller.Dto; using MediaBrowser.Controller.Entities; using MediaBrowser.Model.Querying; namespace MediaBrowser.Controller.TV { /// /// The TV Series manager. /// public interface ITVSeriesManager { /// /// Gets the next up. /// /// The next up query. /// The dto options. /// The next up items. QueryResult GetNextUp(NextUpQuery query, DtoOptions options); /// /// Gets the next up. /// /// The next up request. /// The list of parent folders. /// The dto options. /// The next up items. QueryResult GetNextUp(NextUpQuery request, BaseItem[] parentsFolders, DtoOptions options); } }