ProductCard redesigned, add property for number of items in stock for product

This commit is contained in:
2024-09-22 15:06:10 +02:00
parent 3863661b3c
commit 47fbb564b2
10 changed files with 212 additions and 72 deletions

View File

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

View File

@@ -11,4 +11,5 @@ export class ProductWithCategoryModel {
discount: number = 0
rating: number = 1
images: Array<string> = [""]
storedItems: number
}