Merge from ecomp 718fd196 - 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   position: any;
7   statusMessage?: string;
8
9   constructor() {
10     super();
11     this.instanceParams = {};
12   }
13 }