| 12345678910 |
- using Application.Abstractions.Messaging;
- using Domain.Entities.Payments.ValueObject;
- namespace Application.Features.Api.Payment.CreateOrder;
- public sealed record Command(
- int Amount,
- PaymentMethod PaymentMethod,
- int MemberID = 0
- ) : IQuery<Response>;
|