* sync episode tags and genres * update dependencies * property update local episode genres and tags * fix test
7 lines
206 B
C#
7 lines
206 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Scanner.Application.Emby;
|
|
|
|
public record SynchronizeEmbyLibraryById
|
|
(int EmbyLibraryId, bool ForceScan, bool DeepScan) : IRequest<Either<BaseError, string>>;
|