using System.Collections.Generic; using ErsatzTV.Core.Domain; using LanguageExt; namespace ErsatzTV.Core.Interfaces.Metadata { public interface IFallbackMetadataProvider { ShowMetadata GetFallbackMetadataForShow(string showFolder); ArtistMetadata GetFallbackMetadataForArtist(string artistFolder); List GetFallbackMetadata(Episode episode); MovieMetadata GetFallbackMetadata(Movie movie); Option GetFallbackMetadata(MusicVideo musicVideo); Option GetFallbackMetadata(OtherVideo otherVideo); Option GetFallbackMetadata(Song song); string GetSortTitle(string title); } }