| 12345678910111213 |
- namespace Application.Features.Api.Paper.GetLedger;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int ID,
- string Type,
- decimal TokenAmount,
- decimal UnitsDelta,
- decimal BalanceAfter,
- DateTime CreatedAt
- );
- }
|