8 lines
217 B
C#
8 lines
217 B
C#
|
|
namespace CMSMicroservice.Application.CommissionCQ.Commands.ApproveWithdrawal;
|
||
|
|
|
||
|
|
public class ApproveWithdrawalCommand : IRequest<Unit>
|
||
|
|
{
|
||
|
|
public long PayoutId { get; set; }
|
||
|
|
public string? Notes { get; set; }
|
||
|
|
}
|