14 lines
509 B
C#
14 lines
509 B
C#
namespace BackOffice.BFF.Application.ManualPaymentCQ.Queries.GetManualPayments;
|
|
|
|
public class GetManualPaymentsQuery : IRequest<GetManualPaymentsResponseDto>
|
|
{
|
|
public int PageNumber { get; set; } = 1;
|
|
public int PageSize { get; set; } = 10;
|
|
public long? UserId { get; set; }
|
|
public int? Status { get; set; }
|
|
public int? Type { get; set; }
|
|
public long? RequestedBy { get; set; }
|
|
public bool OrderByDescending { get; set; } = true;
|
|
public string? ReferenceNumber { get; set; }
|
|
}
|