package com.bookshop.behavioral.chainofresponsibility;
import com.bookshop.domain.Book;
import com.bookshop.domain.Customer;
import java.util.List;
/** An order as submitted, before the shop agrees to fulfil it. */
public record OrderRequest(Customer customer, List<Book> books, String shippingAddress) {
}