Adding feature: Replace vfmodule
[vid.git] / vid-webpack-master / src / app / shared / models / vnfInstance.ts
index 6082de6..60f5c48 100644 (file)
@@ -8,10 +8,12 @@ export class VnfInstance extends Level1Instance {
   vnfStoreKey : string;
   position: number;
   statusMessage?: string;
+  upgradedVFMSonsCounter: number;
 
   constructor() {
     super();
     this.vfModules = {};
     this.vnfStoreKey = null;
+    this.upgradedVFMSonsCounter = 0;
   }
 }