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;