Add item model

This commit is contained in:
Rene Vergara 2021-10-21 14:29:19 -05:00
parent 62658f7be9
commit 85b775ae15

7
src/app/item.model.ts Normal file
View file

@ -0,0 +1,7 @@
export interface Item {
_id?: any;
name: string;
description: string;
user: string;
cost: number;
}