Response.cs 361 B

123456789101112131415
  1. using Domain.Entities.Paper.ValueObject;
  2. namespace Application.Features.Api.Paper.GetLedger;
  3. public sealed record Response(int Total, List<Response.Row> List)
  4. {
  5. public sealed record Row(
  6. int ID,
  7. PaperLedgerType Type,
  8. decimal TokenAmount,
  9. decimal UnitsDelta,
  10. decimal BalanceAfter,
  11. DateTime CreatedAt
  12. );
  13. }