interface Order {
  id: string;
  quantity: number;
  status: string;
  notes: string;
}

export function createOrder(input: Partial<Order> = {}): Order {
  return {
    id: input.id || 'order-1',
    quantity: input.quantity || 1,
    status: input.status || 'new',
    notes: input.notes || 'none',
  };
}
