Command.cs 321 B

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