merge from ecomp a88f0072 - Modern UI
[vid.git] / vid-webpack-master / src / app / shared / models / vfModuleInstance.ts
1 import {ChildNodeInstance} from "./nodeInstance";
2
3 export class VfModuleInstance extends ChildNodeInstance{
4   volumeGroupName: string;
5   instanceParams: { [key: string] : string; };
6   isFailed: boolean;
7   position: any;
8   statusMessage?: string;
9
10   constructor() {
11     super();
12     this.instanceParams = {};
13   }
14 }