export class Product { id: string; name: string; description: string; imgUrl: string; quantity: number; price: number; isPremium: boolean; constructor(id: string, name: string, description: string, imgUrl: string, price: number, quantity: number = 0, isPremium: boolean = false) { this.id = id; this.name = name; this.description = description; this.imgUrl = imgUrl; this.price = price; this.quantity = quantity; this.isPremium = isPremium; } }