Files
TVC/js/popup.js
2021-02-03 00:26:54 +01:00

8 lines
120 B
JavaScript

class Popup {
constructor(start, end, text) {
this.start = start;
this.end = end;
this.text = text;
}
}