zgo/src/app/item.model.ts

8 lines
105 B
TypeScript
Raw Normal View History

2021-10-21 19:29:19 +00:00
export interface Item {
_id?: any;
name: string;
description: string;
user: string;
cost: number;
}