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