package market.guess.model.ledger; import java.util.List; public record LedgerDTO( String owner, String balance, boolean blocked, List entries) {}