view app/query-step.ts @ 35:b47614a9d23d

fix cut and paste error.
author casties
date Wed, 03 Feb 2016 18:40:30 +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;
    }
}