using System.Collections.Generic; using ErsatzTV.Core; using LanguageExt; namespace ErsatzTV.Application.MediaCollections.Commands { public record AddItemsToCollection ( int CollectionId, List MovieIds, List ShowIds, List SeasonIds, List EpisodeIds, List ArtistIds, List MusicVideoIds, List OtherVideoIds, List SongIds) : MediatR.IRequest>; }