view app/query-step.ts @ 45:dc4f0541f04d ng2-rc1

update to angular2-rc1. mostly working ;-(
author casties
date Tue, 14 Jun 2016 20:00:39 +0200
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;
    }
}