Redesign productDetail dialog

This commit is contained in:
2024-09-20 15:08:17 +02:00
parent 54d13686cf
commit 718dbe30b7
18 changed files with 230 additions and 174 deletions

View File

@@ -7,5 +7,5 @@ export class ProductModel {
price: number = 0
discount: number = 0
rating: number = 1
imageUrl: string = ""
images: Array<string> = [""]
}

View File

@@ -5,9 +5,9 @@ export class ProductWithCategoryModel {
brand: string
name: string
description: string = ""
category: CategoryModel
category: CategoryModel = new CategoryModel()
price: number = 0
discount: number = 0
rating: number = 1
imageUrl: string = ""
images: Array<string> = [""]
}