aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Workspace.js
blob: ede2710dc0cacbe8c867b6947b3b68ba650c6711 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { observable } from 'mobx';

export default class Workspace {
  id = null;

  @observable name = null;

  @observable order = null;

  @observable services = [];

  @observable userId = null;

  constructor(data) {
    if (!data.id) {
      throw Error('Workspace requires Id');
    }

    this.id = data.id;
    this.name = data.name;
    this.order = data.order;
    this.services = data.services;
    this.userId = data.userId;
  }
}