aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/pnfInstance.ts
blob: ff855bc8cd5057ee24fc4a05de51da7364ec24e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {Level1Instance} from "./level1Instance";


export class PnfInstance extends Level1Instance {

  pnfStoreKey : string;
  statusMessage?: string;
  position: number;

  constructor() {
    super();
    this.pnfStoreKey = null;
  }
}