| 1234567 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Paper.Withdraw;
- /// <summary>TokenAmount 지정 출금 또는 All=true(자유 현금 전액) 출금.</summary>
- public sealed record Command(int MemberID, decimal TokenAmount, bool All) : ICommand<Result<Response>>;
|