You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
542 B
20 lines
542 B
using MediaBrowser.Controller.Dto;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
namespace MediaBrowser.Controller.TV
|
|
{
|
|
public interface ITVSeriesManager
|
|
{
|
|
/// <summary>
|
|
/// Gets the next up.
|
|
/// </summary>
|
|
QueryResult<BaseItem> GetNextUp(NextUpQuery query, DtoOptions options);
|
|
|
|
/// <summary>
|
|
/// Gets the next up.
|
|
/// </summary>
|
|
QueryResult<BaseItem> GetNextUp(NextUpQuery request, BaseItem[] parentsFolders, DtoOptions options);
|
|
}
|
|
}
|