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