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