UNPKG

386 BJavaScriptView Raw
1var SalesPackage = (function () {
2 function SalesPackage(prices, id, name, icon, productIds, products) {
3 this.products = [];
4 this.prices = prices;
5 this.id = id;
6 this.name = name;
7 this.icon = icon;
8 this.products = products || [];
9 this.productIds = productIds || [];
10 }
11 return SalesPackage;
12}());
13export { SalesPackage };