UNPKG

@hachther/mesomb-browser

Version:

JS client for browser to perform mobile payment operation with MeSomb

13 lines (12 loc) 269 B
export default class Product { name; category; quantity; amount; constructor(data) { this.name = data['name']; this.category = data['category']; this.quantity = data['quantity']; this.amount = data['amount']; } }