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