using System.Collections.Generic; using ErsatzTV.Core; using LanguageExt; namespace ErsatzTV.Application.MediaCollections.Commands { public record RemoveItemsFromSimpleMediaCollection (int MediaCollectionId) : MediatR.IRequest> { public List MovieIds { get; set; } = new(); public List TelevisionShowIds { get; set; } = new(); public List TelevisionSeasonIds { get; set; } = new(); public List TelevisionEpisodeIds { get; set; } = new(); } }