zgo/src/app/item.model.ts

8 lines
106 B
TypeScript

export interface Item {
_id?: any;
name: string;
description: string;
owner: string;
cost: number;
}