| 123456789101112 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Member.Wallet.List.Search;
- public sealed record Query(
- int PageNum,
- ushort PerPage,
- int? Search = null,
- string? Keyword = null,
- string? StartAt = null,
- string? EndAt = null
- ) : IQuery<Response>;
|