* update trakt list items when re-adding existing list * add seasons to search index
17 lines
431 B
C#
17 lines
431 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> SeasonIds,
|
|
List<int> EpisodeIds,
|
|
List<int> ArtistIds,
|
|
List<int> MusicVideoIds) : MediatR.IRequest<Either<BaseError, Unit>>;
|
|
}
|