11 lines
188 B
JavaScript
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;
|
|
}
|
|
}
|