mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			718 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			718 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using Kyoo.Models;
 | 
						|
 | 
						|
namespace Kyoo.Controllers
 | 
						|
{
 | 
						|
	public interface IProviderManager
 | 
						|
	{
 | 
						|
		Task<Collection> GetCollectionFromName(string name, Library library);
 | 
						|
		Task<Show> CompleteShow(Show show, Library library);
 | 
						|
		Task<Show> SearchShow(string showName, bool isMovie, Library library);
 | 
						|
		Task<IEnumerable<Show>> SearchShows(string showName, bool isMovie, Library library);
 | 
						|
		Task<Season> GetSeason(Show show, int seasonNumber, Library library);
 | 
						|
		Task<Episode> GetEpisode(Show show, string episodePath, int seasonNumber, int episodeNumber, int absoluteNumber, Library library);
 | 
						|
		Task<IEnumerable<PeopleRole>> GetPeople(Show show, Library library);
 | 
						|
	}
 | 
						|
} |