Mercurial > hg > ng2-query-ismi
annotate app/result-column.ts @ 45:dc4f0541f04d ng2-rc1
update to angular2-rc1. mostly working ;-(
| author | casties |
|---|---|
| date | Tue, 14 Jun 2016 20:00:39 +0200 |
| parents | 4926885f8a99 |
| children |
| rev | line source |
|---|---|
| 25 | 1 export class ResultColumn { |
| 2 public name: string; | |
| 3 public title: string; | |
| 4 public sort: any; | |
|
31
4926885f8a99
selectable result columns. nicer cypher query output.
casties
parents:
25
diff
changeset
|
5 public show: boolean; |
| 25 | 6 |
|
31
4926885f8a99
selectable result columns. nicer cypher query output.
casties
parents:
25
diff
changeset
|
7 constructor (name: string, title: string, sort='', show=false) { |
| 25 | 8 this.name = name; |
| 9 this.title = title; | |
| 10 this.sort = sort; | |
|
31
4926885f8a99
selectable result columns. nicer cypher query output.
casties
parents:
25
diff
changeset
|
11 this.show = show; |
| 25 | 12 } |
| 13 } |
