11 lines
305 B
C#
11 lines
305 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);
|