diff --git a/src/app/item.model.ts b/src/app/item.model.ts new file mode 100644 index 0000000..e94757f --- /dev/null +++ b/src/app/item.model.ts @@ -0,0 +1,7 @@ +export interface Item { + _id?: any; + name: string; + description: string; + user: string; + cost: number; +}