13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
export class ProductModel {
|
|
id: number = -1
|
|
brand: string = ""
|
|
name: string = ""
|
|
description: string = ""
|
|
categoryId: number = 0
|
|
price: number = 0
|
|
discount: number = 0
|
|
rating: number = 1
|
|
imageUrl: string = ""
|
|
createdAt: string = ""
|
|
updatedAt: string = ""
|
|
} |