Query.cs 355 B

1234567891011121314151617
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Forum.CommentReport.Search;
  3. public sealed record Query(
  4. int? BoardID,
  5. int? PostID,
  6. int? CommentID,
  7. int? Search,
  8. string? Keyword,
  9. byte? Status,
  10. byte? Type,
  11. string? StartAt,
  12. string? EndAt,
  13. int PageNum,
  14. ushort PerPage
  15. ) : IQuery<Response>;