using MediatR; namespace ChapterX.Application.Likes.Commands { public record AddRequest(int UserId, int ChapterId) : IRequest; }