zgo/src/app/item.model.ts

8 lines
106 B
TypeScript
Raw Normal View History

2021-10-21 19:29:19 +00:00
export interface Item {
_id?: any;
name: string;
description: string;
2022-05-18 20:51:39 +00:00
owner: string;
2021-10-21 19:29:19 +00:00
cost: number;
}