Query.cs 370 B

12345678910111213141516
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Crypto.List.Search
  3. {
  4. public sealed record Query(
  5. int? CategoryID,
  6. string? Keyword,
  7. bool? IsActive,
  8. bool? IsWarning,
  9. bool? IsNew,
  10. bool? IsDelisted,
  11. int PageNum,
  12. ushort PerPage,
  13. ushort Tab
  14. ) : IQuery<Response>;
  15. }