* start to rework plex collection scanning * sync plex collections to db * sync plex collection items * update changelog
7 lines
215 B
C#
7 lines
215 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Plex;
|
|
|
|
public record SynchronizePlexCollections(int PlexMediaSourceId, bool ForceScan) : IRequest<Either<BaseError, Unit>>,
|
|
IScannerBackgroundServiceRequest;
|