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