export class ProductModel { id: number = -1 brand: string = "" name: string = "" description: string = "" categoryId: number = 0 price: number = 0 discount: number = 0 rating: number = 1 nrOfArticles: number = 2 imageUrl: string = "" createdAt: string = "" updatedAt: string = "" }