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