Query.cs 350 B

123456789101112131415
  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. ) : IQuery<Response>;
  14. }