Files
Custom-Static-Website-Gener…/whatsapp-web.js/src/models/product.js
2020-07-22 10:51:29 +04:00

14 lines
266 B
JavaScript

class Product {
constructor({ id = '', name = '', desc = '', cost = 0, image = null }) {
this.id = id;
this.name = name;
this.desc = desc;
this.cost = cost;
this.image = image;
}
}
module.exports.Product = Product;