mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
639 B
15 lines
639 B
using ErsatzTV.Core.Domain; |
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata; |
|
|
|
public interface IFallbackMetadataProvider |
|
{ |
|
Option<int> GetSeasonNumberForFolder(string folder); |
|
ShowMetadata GetFallbackMetadataForShow(string showFolder); |
|
ArtistMetadata GetFallbackMetadataForArtist(string artistFolder); |
|
List<EpisodeMetadata> GetFallbackMetadata(Episode episode); |
|
MovieMetadata GetFallbackMetadata(Movie movie); |
|
Option<MusicVideoMetadata> GetFallbackMetadata(MusicVideo musicVideo); |
|
Option<OtherVideoMetadata> GetFallbackMetadata(OtherVideo otherVideo); |
|
Option<SongMetadata> GetFallbackMetadata(Song song); |
|
}
|
|
|