Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame^] | 1 | |
2 | |||||
3 | import {Level1Instance} from "./level1Instance"; | ||||
4 | |||||
5 | export class NetworkInstance extends Level1Instance{ | ||||
6 | networkStoreKey : string; | ||||
7 | isFailed: boolean; | ||||
8 | statusMessage?: string; | ||||
9 | |||||
10 | constructor() { | ||||
11 | super(); | ||||
12 | this.networkStoreKey = null; | ||||
13 | } | ||||
14 | } |