Files
optolith-client/js/stores/data/Item.js
T
Lukas Obermann e1927227bf Changed data objects to ES6 classes
Additionally changed folder structure to components and views
2016-11-14 00:18:09 +01:00

11 lines
188 B
JavaScript

import Core from './Core';
export default class Item extends Core {
constructor(args) {
super(args);
let { price, weight } = args;
this.price = price;
this.weight = weight;
}
}