Merge changes Ib4430bf2,Icc0bdb9e,I2736b984
[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 }