* upgrade dependencies * allow blocks with same name in different groups * code cleanup
7 lines
205 B
C#
7 lines
205 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Scanner.Application.Emby;
|
|
|
|
public record SynchronizeEmbyLibraryById(int EmbyLibraryId, bool ForceScan, bool DeepScan)
|
|
: IRequest<Either<BaseError, string>>;
|