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