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