Radek Krejci | 95bd14c | 2017-09-21 14:24:13 +0200 | [diff] [blame] | 1 | import { Device } from '../inventory/device'; |
| 2 | |
| 3 | export class Session { |
| 4 | constructor ( |
| 5 | public key: string, |
| 6 | public device: Device, |
Radek Krejci | a133960 | 2017-11-02 13:52:38 +0100 | [diff] [blame^] | 7 | public data = null, |
Radek Krejci | ae75839 | 2017-10-20 10:53:26 +0200 | [diff] [blame] | 8 | public cpblts: string = "", |
Radek Krejci | a133960 | 2017-11-02 13:52:38 +0100 | [diff] [blame^] | 9 | public dataVisibility: string = 'none', |
| 10 | public statusVisibility: boolean = true, |
| 11 | public cpbltsVisibility: boolean = false, |
Radek Krejci | 95bd14c | 2017-09-21 14:24:13 +0200 | [diff] [blame] | 12 | ) {} |
| 13 | } |