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

export class NcfInstance extends Level1Instance{
  storeKey : string;
  statusMessage?: string;

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