UNPKG

@votemike/property

Version:

Property class and related classes

10 lines (9 loc) 216 B
export default class Fee { constructor(amount) { this.amount = amount; } static fromJson(json) { const fee = Object.create(Fee.prototype); return Object.assign(fee, json); } }