* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
9 lines
243 B
C#
9 lines
243 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Scanner.Core.Interfaces.Metadata;
|
|
|
|
public interface ILocalSubtitlesProvider : IDisposable
|
|
{
|
|
Task<bool> UpdateSubtitles(MediaItem mediaItem, Option<string> localPath, bool saveFullPath);
|
|
}
|