* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
12 lines
408 B
C#
12 lines
408 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record UpdateMultiCollectionItem(int? CollectionId, int? SmartCollectionId, bool ScheduleAsGroup, PlaybackOrder PlaybackOrder);
|
|
|
|
public record UpdateMultiCollection
|
|
(
|
|
int MultiCollectionId,
|
|
string Name,
|
|
List<UpdateMultiCollectionItem> Items) : MediatR.IRequest<Either<BaseError, Unit>>; |