src/app/MenuItem.ts
Properties |
_id |
_id:
|
Type : string
|
name |
name:
|
Type : string
|
price |
price:
|
Type : number
|
quantity |
quantity:
|
Type : string
|
restaurant |
restaurant:
|
Type : string
|
user |
user:
|
Type : string
|
export interface MenuItem {
_id: string;
name: string;
price: number;
restaurant: string;
user: string;
quantity:string;
}