UNPKG
@votemike/property
Version:
latest (0.2.0)
0.2.0
0.1.2
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
Property class and related classes
@votemike/property
/
dist
/
src
/
fee.js
10 lines
(9 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
class
Fee
{
constructor
(
amount
) {
this
.
amount
= amount; }
static
fromJson
(
json
) {
const
fee =
Object
.
create
(
Fee
.
prototype
);
return
Object
.
assign
(fee, json); } }