File size: 303 Bytes
d7dfeff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Session {
  constructor() {
    this.call = null;
    this.client = null;
    this.channel = null;
    this.saved = false;
    this.starttime = Date.now();
    this.cansend = false;
    this.chathistory = [];
    this.chathistorybackup = [];
    this.latency = 0;
  }
}

module.exports = Session;