* add basic image library support * add image page * update changelog
6 lines
178 B
C#
6 lines
178 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record AddImageToCollection(int CollectionId, int ImageId) : IRequest<Either<BaseError, Unit>>;
|