Query.cs 317 B

123456789101112131415
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Forum.Comment.Search;
  3. public sealed record Query(
  4. int? BoardID,
  5. int? PostID,
  6. int? Search,
  7. string? Keyword,
  8. string? StartAt,
  9. string? EndAt,
  10. bool? IsDeleted,
  11. int Page,
  12. ushort PerPage
  13. ) : IQuery<Response>;