blob: 6eda403a616290eab2226693bc2d308e3d8c5074 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import {Level1Instance} from "./level1Instance";
export class VnfMember extends Level1Instance{
serviceInstanceName: string;
serviceInstanceId: string;
tenantName: string;
constructor(){
super();
}
}
|