Add item model

This commit is contained in:
Rene Vergara 2021-10-21 14:29:19 -05:00
parent 62658f7be9
commit 85b775ae15
1 changed files with 7 additions and 0 deletions

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;
}