2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.CommandQueries.Queries;
|
2024-02-12 10:46:18 +03:30
|
|
|
|
|
|
|
|
|
|
public sealed record GetPaymentQuery(Guid Id = default , string? Authority = null) : IRequest<PaymentSDto>;
|
|
|
|
|
|
public sealed record GetPaymentsQuery(int Page = 0) : IRequest<List<PaymentSDto>>;
|