| 12345678910 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Donation.List.Export;
- public sealed record Query(
- int? Search = null,
- string? Keyword = null,
- string? StartAt = null,
- string? EndAt = null
- ) : IQuery<Response>;
|