export interface OrderLine {
    name: string;
    quantity: number;
    total_amount: number;
    unit_price: number;
}
