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