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