package com.bookshop.solid.dip;

import java.math.BigDecimal;

/** A confirmed order: who, how much, and the payment reference proving it. */
public record PlacedOrder(String customerId, BigDecimal total, String paymentRef) {
}
