mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 11:07:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			581 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			581 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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, List<Folder> parentsFolders, DtoOptions options);
 | 
						|
    }
 | 
						|
}
 |