using MediatR;

namespace ChapterX.Application.AISuggestion.Queries
{
    public record GetByChapterRequest(int ChapterId) : IRequest<GetByChapterResponse>;
}
