Merge from ecomp 718fd196 - Modern UI
[vid.git] / vid-webpack-master / src / app / shared / models / vrfInstance.ts
1 import {Level1Instance} from "./level1Instance";
2
3 export class VrfInstance extends Level1Instance{
4   vrfStoreKey : string;
5   statusMessage?: string;
6   vpns : any;
7   networks : any;
8
9   constructor() {
10     super();
11     this.vrfStoreKey = null;
12     this.vpns = {};
13     this.networks = {};
14   }
15 }