Files
ersatztv/ErsatzTV.Application/MediaCollections/Commands/AddOtherVideoToCollection.cs
T

9 lines
239 B
C#

using ErsatzTV.Core;
using LanguageExt;
namespace ErsatzTV.Application.MediaCollections.Commands
{
public record AddOtherVideoToCollection
(int CollectionId, int OtherVideoId) : MediatR.IRequest<Either<BaseError, Unit>>;
}