| 12345678910111213141516 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Crypto.List.Search
- {
- public sealed record Query(
- int? CategoryID,
- string? Keyword,
- bool? IsActive,
- bool? IsWarning,
- bool? IsNew,
- bool? IsDelisted,
- int PageNum,
- ushort PerPage,
- ushort Tab
- ) : IQuery<Response>;
- }
|