blob: ded95a78703826d0de0fb3622353b557804c18b2 [file] [log] [blame]
Ittay Stern6f900cc2018-08-29 17:01:32 +03001
2
3import {Level1Instance} from "./level1Instance";
4
5export class NetworkInstance extends Level1Instance{
6 networkStoreKey : string;
7 isFailed: boolean;
8 statusMessage?: string;
9
10 constructor() {
11 super();
12 this.networkStoreKey = null;
13 }
14}