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