7 lines
193 B
C#
7 lines
193 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record AddOtherVideoToCollection
|
|
(int CollectionId, int OtherVideoId) : IRequest<Either<BaseError, Unit>>;
|