Mercurial > hg > ng2-query-ismi
diff src/app/query-step.ts @ 47:b65a031c4967 ng2-final
first step to angular2-final (2.4) version of the query browser.
author | casties |
---|---|
date | Fri, 17 Mar 2017 20:16:52 +0100 |
parents | app/query-step.ts@34cd764e234b |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/app/query-step.ts Fri Mar 17 20:16:52 2017 +0100 @@ -0,0 +1,14 @@ +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; + } +} \ No newline at end of file