aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Plan.js
blob: e77353824aec02fea16b6f064b103d6770427dc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// @flow

export default class Plan {
  month: {
    id: '',
    price: 0,
  }
  year: {
    id: '',
    price: 0,
  }

  constructor(data) {
    Object.assign(this, data);
  }
}