* upgrade dependencies * allow blocks with same name in different groups * code cleanup
10 lines
304 B
C#
10 lines
304 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Plex;
|
|
|
|
public record UpdatePlexPathReplacements(
|
|
int PlexMediaSourceId,
|
|
List<PlexPathReplacementItem> PathReplacements) : IRequest<Either<BaseError, Unit>>;
|
|
|
|
public record PlexPathReplacementItem(int Id, string PlexPath, string LocalPath);
|