using Application.Abstractions.Messaging; using Domain.Entities.Payments.Toss.ValueObject; namespace Application.Features.Admin.Payment.Toss.Log.Search; public sealed record Query( int Page, ushort PerPage, int? Search = null, string? Keyword = null, string? StartAt = null, string? EndAt = null, TossLogType? LogType = null ) : IQuery;