Files
ersatztv/ErsatzTV.Scanner/Application/Emby/Commands/SynchronizeEmbyLibraryById.cs
T
Jason DoveandGitHub 13e21bbcce sync episode tags and genres (#1155)
* sync episode tags and genres

* update dependencies

* property update local episode genres and tags

* fix test
2023-02-12 09:53:20 -06:00

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>>;