Query.cs 376 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using Domain.Entities.Payments.Toss.ValueObject;
  3. namespace Application.Features.Admin.Payment.Toss.Log.Search;
  4. public sealed record Query(
  5. int Page,
  6. ushort PerPage,
  7. int? Search = null,
  8. string? Keyword = null,
  9. string? StartAt = null,
  10. string? EndAt = null,
  11. TossLogType? LogType = null
  12. ) : IQuery<Response>;