15 lines
465 B
C#
15 lines
465 B
C#
using System;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata
|
|
{
|
|
public interface IFallbackMetadataProvider
|
|
{
|
|
ShowMetadata GetFallbackMetadataForShow(string showFolder);
|
|
Tuple<EpisodeMetadata, int> GetFallbackMetadata(Episode episode);
|
|
MovieMetadata GetFallbackMetadata(Movie movie);
|
|
MusicVideoMetadata GetFallbackMetadata(MusicVideo musicVideo);
|
|
string GetSortTitle(string title);
|
|
}
|
|
}
|