* upgrade dependencies * allow blocks with same name in different groups * code cleanup
6 lines
188 B
C#
6 lines
188 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record AddOtherVideoToCollection(int CollectionId, int OtherVideoId) : IRequest<Either<BaseError, Unit>>;
|