Command.cs 215 B

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