using Application.Abstractions.Messaging; namespace Application.Features.Api.Forum.Comment.Mention; public sealed record Query( int PostID, string? Keyword, int? MemberID ) : IQuery<List<Response>>;