blob: 22ca44492ed07f5c4f18045e14b2182993c162e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import {Level1Instance} from "./level1Instance";
import {VnfMember} from "./VnfMember";
import {NetworkInstance} from "./networkInstance";
export class VnfGroupInstance extends Level1Instance{
vnfGroupStoreKey : string;
vnfs: { [vnf_module_model_name: string]: VnfMember; };
constructor() {
super();
this.vnfGroupStoreKey = null;
this.vnfs ={};
}
}
|