* 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.Plex;
|
|
|
|
public record SynchronizePlexLibraryById(int PlexLibraryId, bool ForceScan, bool DeepScan)
|
|
: IRequest<Either<BaseError, string>>;
|