mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-11 19:43:07 +03:00
Add GPL modules
This commit is contained in:
20
MediaBrowser.Controller/TV/ITVSeriesManager.cs
Normal file
20
MediaBrowser.Controller/TV/ITVSeriesManager.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using MediaBrowser.Controller.Entities;
|
||||
using MediaBrowser.Model.Querying;
|
||||
using System.Collections.Generic;
|
||||
using MediaBrowser.Controller.Dto;
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user