aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Plan.js
blob: c7b4a09628b9083d3c98202a3798e5dbbd55523b (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);
  }
}