Files
ersatztv/ErsatzTV.Scanner/Application/Plex/Commands/SynchronizePlexShowById.cs
T
Jason DoveandGitHub 626048f9c3 change how scanner and main process communicate (#2555)
* report scanner progress using api

* process scanner search index updates through api

* update changelog

* update dependencies
2025-10-21 15:08:49 -05:00

7 lines
211 B
C#

using ErsatzTV.Core;
namespace ErsatzTV.Scanner.Application.Plex;
public record SynchronizePlexShowById(string BaseUrl, int PlexLibraryId, int ShowId, bool DeepScan)
: IRequest<Either<BaseError, string>>;