* extract remaining nfo xml serializers * add artist nfo tests * add music video nfo tests * add tv show nfo reader tests * custom artist nfo reader * custom music video nfo reader * custom tv show nfo reader * local metadata parsing cleanup * update changelog
9 lines
193 B
C#
9 lines
193 B
C#
using ErsatzTV.Core.Metadata.Nfo;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata.Nfo;
|
|
|
|
public interface IMusicVideoNfoReader
|
|
{
|
|
Task<Either<BaseError, MusicVideoNfo>> Read(Stream input);
|
|
}
|