Command.cs 459 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.V1.Purchases.Cancel;
  4. /// <summary>
  5. /// 게임사 결제 취소 보고. 등록한 앱만 취소 가능 (ApplicationID 일치 검증).
  6. /// Marketplace 는 동일 orderID 가 여러 마켓에 있을 때만 필수.
  7. /// </summary>
  8. public sealed record Command(
  9. int ApplicationID,
  10. string OrderID,
  11. int? Marketplace
  12. ) : ICommand<Result<Response>>;