* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
10 lines
310 B
C#
10 lines
310 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record UpdateCollectionCustomOrder
|
|
(
|
|
int CollectionId,
|
|
List<MediaItemCustomOrder> MediaItemCustomOrders) : MediatR.IRequest<Either<BaseError, Unit>>;
|
|
|
|
public record MediaItemCustomOrder(int MediaItemId, int CustomIndex); |