Query.cs 310 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Donation.Alert.Search;
  3. public sealed record Query(
  4. int Page,
  5. ushort PerPage,
  6. int? Search = null,
  7. string? Keyword = null,
  8. string? StartAt = null,
  9. string? EndAt = null,
  10. int Tab = 0
  11. ) : IQuery<Response>;