* optimize emby collection scan frequency * add button to sync emby collections * update changelog * fix scanning; add progress indicator
7 lines
215 B
C#
7 lines
215 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Emby;
|
|
|
|
public record SynchronizeEmbyCollections(int EmbyMediaSourceId, bool ForceScan) : IRequest<Either<BaseError, Unit>>,
|
|
IScannerBackgroundServiceRequest;
|