Query.cs 213 B

123456789
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Forum.Comment.Mention;
  3. public sealed record Query(
  4. int PostID,
  5. string? Keyword,
  6. int? MemberID
  7. ) : IQuery<List<Response>>;