blob: 1ca2c3cb68c3192d111868f19b4cf206e3ea1c38 [file] [log] [blame]
Radek Krejci95bd14c2017-09-21 14:24:13 +02001import { Device } from '../inventory/device';
2
3export class Session {
4 constructor (
5 public key: string,
6 public device: Device,
Radek Krejciae758392017-10-20 10:53:26 +02007 public data: string = "",
8 public cpblts: string = "",
9 public dataVisibility: boolean = false,
10 public cpbltsVisibility: boolean = false
Radek Krejci95bd14c2017-09-21 14:24:13 +020011 ) {}
12}