Query.cs 414 B

1234567891011121314151617181920
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Forum.Post.Search;
  3. public sealed record Query(
  4. int? BoardID,
  5. int? BoardPrefixID,
  6. int? Search,
  7. string? Keyword,
  8. string? StartAt,
  9. string? EndAt,
  10. int? Sort,
  11. bool? IsNotice,
  12. bool? IsSecret,
  13. bool? IsReply,
  14. bool? IsDeleted,
  15. int Page,
  16. ushort PerPage,
  17. int? MemberID
  18. ) : IQuery<Response>;