Query.cs 258 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Donation.List.Export;
  3. public sealed record Query(
  4. int? Search = null,
  5. string? Keyword = null,
  6. string? StartAt = null,
  7. string? EndAt = null
  8. ) : IQuery<Response>;