* clean up genre, tag, studio orphans * enforce foreign keys at connection level * wip * fix fragment scroll offset * fix see all link for music videos * add fake artist metadata * not null artist id * add artist scanning * remove improperly named music videos * code cleanup * add artists to search results and collections * clean up music video metadata / artist * add artist view * show music videos on artist page * add music video artwork placeholder
17 lines
566 B
C#
17 lines
566 B
C#
using System;
|
|
using ErsatzTV.Core.Domain;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata
|
|
{
|
|
public interface IFallbackMetadataProvider
|
|
{
|
|
ShowMetadata GetFallbackMetadataForShow(string showFolder);
|
|
ArtistMetadata GetFallbackMetadataForArtist(string artistFolder);
|
|
Tuple<EpisodeMetadata, int> GetFallbackMetadata(Episode episode);
|
|
MovieMetadata GetFallbackMetadata(Movie movie);
|
|
Option<MusicVideoMetadata> GetFallbackMetadata(MusicVideo musicVideo);
|
|
string GetSortTitle(string title);
|
|
}
|
|
}
|