package com.bookshop.solid.lsp;

import java.math.BigDecimal;

/** A physical book -- purchasable, honours the contract fully. */
public record PrintedBook(String title, BigDecimal price, int weightGrams) implements Purchasable {
}
