blob: b2a7c461df100c3cd98aedb1dae4ca6a6336462a [file] [log] [blame]
Ittay Sternf7926712019-07-07 19:23:03 +03001import {Level1Instance} from "./level1Instance";
2
3export class NcfInstance extends Level1Instance{
4 storeKey : string;
5 statusMessage?: string;
6
7 constructor() {
8 super();
9 this.storeKey = null;
10 }
11}