Add item model
This commit is contained in:
parent
62658f7be9
commit
85b775ae15
1 changed files with 7 additions and 0 deletions
7
src/app/item.model.ts
Normal file
7
src/app/item.model.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
export interface Item {
|
||||
_id?: any;
|
||||
name: string;
|
||||
description: string;
|
||||
user: string;
|
||||
cost: number;
|
||||
}
|
Loading…
Reference in a new issue