* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
7 lines
269 B
C#
7 lines
269 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Libraries;
|
|
|
|
public record CreateLocalLibrary(string Name, LibraryMediaKind MediaKind, List<string> Paths)
|
|
: ILocalLibraryRequest, IRequest<Either<BaseError, LocalLibraryViewModel>>; |