view src/app/query-step.ts @ 59:0d51fefdbae6 webpack

Starting 'webpack' branch
author casties
date Wed, 29 Mar 2017 19:01:29 +0200
parents b65a031c4967
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;
    }
}