Create product cards, display all on products page

This commit is contained in:
2024-09-06 17:10:21 +02:00
parent 22cc811ae5
commit babf1c77ce
11 changed files with 253 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
export class ProductModel {
id: number = -1
brand: string = ""
name: string = ""
categoryId: number = 0
price: number = 0
discount: number = 0
rating: number = 1
createdAt: string = ""
updatedAt: string = ""
}