blob: ba3679646ab1b73903de23ad4ec3d881fa3ea9d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import {Level1Instance} from "./level1Instance";
export class PnfInstance extends Level1Instance {
pnfStoreKey : string;
statusMessage?: string;
constructor() {
super();
this.pnfStoreKey = null;
}
}
|