aboutsummaryrefslogblamecommitdiff
path: root/src/background/domains/global-mark.js
blob: f0586f17fee3966ecb370aa4ca5895f19c70c4fd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                 
                                 
                        
                    






                       


                     






                   
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;
  }
}