Query.cs 386 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Payment.Toss.Cancel.Search;
  3. /// <summary>State: 1=성공, 2=실패, 3=응답 대기</summary>
  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. int? State = null
  12. ) : IQuery<Response>;