7 lines
196 B
C#
7 lines
196 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Libraries;
|
|
|
|
public record CreateLocalLibraryPath
|
|
(int LibraryId, string Path) : IRequest<Either<BaseError, LocalLibraryPathViewModel>>;
|