using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Payment.Cancel; public sealed record Command( string OrderID, int MemberID = 0 ) : ICommand<Result>;