view app/query-step.ts @ 27:c2946b7135cd

working on larger results.
author casties
date Wed, 27 Jan 2016 15:38:17 +0100
parents 34cd764e234b
children
line wrap: on
line source

import {QueryMode} from './query-mode';

export class QueryStep {
    public mode: QueryMode;
    
    public params: any;
    
    public resultInfo: string;
    
    constructor (mode: QueryMode, params: any) {
        this.mode = mode;
        this.params = params;
    }
}