2014-09-01 20:10:54 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
using System.Collections.Generic;
|
2017-05-21 07:25:49 +00:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.TV
|
|
|
|
|
{
|
|
|
|
|
public interface ITVSeriesManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the next up.
|
|
|
|
|
/// </summary>
|
2017-05-21 07:25:49 +00:00
|
|
|
|
QueryResult<BaseItem> GetNextUp(NextUpQuery query, DtoOptions options);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the next up.
|
|
|
|
|
/// </summary>
|
2017-05-21 07:25:49 +00:00
|
|
|
|
QueryResult<BaseItem> GetNextUp(NextUpQuery request, List<Folder> parentsFolders, DtoOptions options);
|
2014-09-01 20:10:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|