* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
8 lines
297 B
C#
8 lines
297 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>>; |