mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
14 lines
305 B
C#
14 lines
305 B
C#
using Kyoo.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kyoo.Controllers
|
|
{
|
|
public interface IThumbnailsManager
|
|
{
|
|
Task<Show> Validate(Show show);
|
|
Task<IEnumerable<PeopleLink>> Validate(List<PeopleLink> actors);
|
|
Task<Episode> Validate(Episode episode);
|
|
}
|
|
}
|