zgo/src/app/order/order.model.ts

13 lines
177 B
TypeScript
Raw Normal View History

export interface Order {
_id?: string,
address: string,
session: string,
timestamp: string,
closed: boolean,
lines: [{
qty: number,
item: string,
cost: number
}]
}