Add Semicolon at the end
[vid.git] / vid-webpack-master / src / app / shared / models / vnfInstance.ts
1 import {VfModuleMap} from "./vfModulesMap";
2 import {Level1Instance} from "./level1Instance";
3
4
5 export class VnfInstance extends Level1Instance {
6
7   vfModules: { [vf_module_model_name: string] : VfModuleMap; };
8   vnfStoreKey : string;
9   position: number;
10   statusMessage?: string;
11
12   constructor() {
13     super();
14     this.vfModules = {};
15     this.vnfStoreKey = null;
16   }
17 }