BG5's picture
Upload 253 files
db242f8
export interface IProduct {
id: number;
name: string;
features: string[];
price: number;
stock: number;
duration: number;
}
export interface ICategory {
id: number;
name: string;
products: IProduct[];
}