7 lines
230 B
C#
7 lines
230 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Plex;
|
|
|
|
public record SynchronizePlexCollections(int PlexMediaSourceId, bool ForceScan, bool DeepScan)
|
|
: IRequest<Either<BaseError, Unit>>, IScannerBackgroundServiceRequest;
|