* 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
9 lines
239 B
C#
9 lines
239 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Commands
|
|
{
|
|
public record AddMusicVideoToCollection
|
|
(int CollectionId, int MusicVideoId) : MediatR.IRequest<Either<BaseError, Unit>>;
|
|
}
|