zgo/src/app/items/lineitem.model.ts

6 lines
74 B
TypeScript

export interface LineItem {
qty: number;
name: string;
cost: number;
}