* add actor metadata * show actors in ui * get full movie/show metadata from plex * store actor thumbnail url * rework movie detail page * metadata fixes * rework show detail page * rework artist page * code cleanup
16 lines
372 B
C#
16 lines
372 B
C#
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Plex;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Plex
|
|
{
|
|
public interface IPlexMovieLibraryScanner
|
|
{
|
|
Task<Either<BaseError, Unit>> ScanLibrary(
|
|
PlexConnection connection,
|
|
PlexServerAuthToken token,
|
|
PlexLibrary library);
|
|
}
|
|
}
|