mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
15 lines
553 B
C#
15 lines
553 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> GetShowFromName(string showName, Library library);
|
|
Task<Season> GetSeason(string showName, long seasonNumber, Library library);
|
|
Task<Episode> GetEpisode(Show show, long seasonNumber, long episodeNumber, long absoluteNumber, Library library);
|
|
Task<IEnumerable<People>> GetPeople(Show show, Library library);
|
|
}
|
|
} |