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