import { ProductInventory } from './ProductInventory'; export interface Product { Id: number, ProductTitle: string, Vendor: string, Tax: boolean, Price: number, Visible: boolean, Featured: boolean, Variants: number, Quantity: number, Teaser: string, ProductContent: string, AllowWhenOutOfStock: boolean, TrackInventory: boolean, CreatedDate: Date, IsDiabled: boolean Expand: ProductInventory[] }