9 lines
298 B
C#
9 lines
298 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Libraries;
|
|
|
|
public record UpdateLocalLibraryPath(int Id, string Path);
|
|
|
|
public record UpdateLocalLibrary(int Id, string Name, List<UpdateLocalLibraryPath> Paths) : ILocalLibraryRequest,
|
|
IRequest<Either<BaseError, LocalLibraryViewModel>>;
|