aboutsummaryrefslogtreecommitdiff
path: root/src/background/domains/GlobalMark.ts
blob: f0586f17fee3966ecb370aa4ca5895f19c70c4fd (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
export default class GlobalMark {
  constructor(tabId, url, x, y) {
    this.tabId0 = tabId;
    this.url0 = url;
    this.x0 = x;
    this.y0 = y;
  }

  get tabId() {
    return this.tabId0;
  }

  get url() {
    return this.url0;
  }

  get x() {
    return this.x0;
  }

  get y() {
    return this.y0;
  }
}