Command.cs 179 B

12345678
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Payment.Cancel;
  3. public sealed record Command(
  4. string OrderID,
  5. int MemberID = 0
  6. ) : ICommand;