mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Providers
 | 
						|
{
 | 
						|
    public interface ISeriesOrderManager
 | 
						|
    {
 | 
						|
        Task<int?> FindSeriesIndex(string orderType, string seriesName);
 | 
						|
        void AddParts(IEnumerable<ISeriesOrderProvider> orderProviders);
 | 
						|
    }
 | 
						|
}
 |