using Kyoo.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Kyoo.Controllers { public interface IThumbnailsManager { Task Validate(Show show); Task> Validate(List actors); Task Validate(Episode episode); } }