| 12345678910111213 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Donation.Alert.Search;
- public sealed record Query(
- int Page,
- ushort PerPage,
- int? Search = null,
- string? Keyword = null,
- string? StartAt = null,
- string? EndAt = null,
- int Tab = 0
- ) : IQuery<Response>;
|