9 lines
256 B
C#
9 lines
256 B
C#
namespace BackOffice.BFF.Application.ManualPaymentCQ.Commands.RejectManualPayment;
|
|
|
|
public class RejectManualPaymentCommand : IRequest<bool>
|
|
{
|
|
public long ManualPaymentId { get; set; }
|
|
public string RejectionReason { get; set; } = string.Empty;
|
|
}
|
|
|