| 1234567891011121314 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Payment.Toss.Cancel.Search;
- /// <summary>State: 1=성공, 2=실패, 3=응답 대기</summary>
- public sealed record Query(
- int Page,
- ushort PerPage,
- int? Search = null,
- string? Keyword = null,
- string? StartAt = null,
- string? EndAt = null,
- int? State = null
- ) : IQuery<Response>;
|