* add music videos library * add music video tables * first pass at music video library scan * support music videos in playouts * display music videos in search results and collections * fix music video thumbnails * remove some obsolete fields
14 lines
343 B
C#
14 lines
343 B
C#
using System.Collections.Generic;
|
|
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Commands
|
|
{
|
|
public record AddItemsToCollection
|
|
(
|
|
int CollectionId,
|
|
List<int> MovieIds,
|
|
List<int> ShowIds,
|
|
List<int> MusicVideoIds) : MediatR.IRequest<Either<BaseError, Unit>>;
|
|
}
|