Response.cs 189 B

123456789
  1. namespace Application.Features.Api.Paper.Withdraw;
  2. public sealed record Response(
  3. decimal Token,
  4. decimal Units,
  5. decimal UnitsBurned,
  6. decimal Credited,
  7. decimal Burned
  8. );