view app/query-step.ts @ 46:1f3fed01aef6 ng2-final

Starting 'ng2-final' branch
author casties
date Fri, 17 Mar 2017 18:11: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;
    }
}