Mercurial > hg > ng2-query-ismi
view app/result-column.ts @ 44:3779464b830e ng2-rc1
update to angular2-rc1. mostly working ;-(
Starting 'ng2-rc1' branch
author | casties |
---|---|
date | Tue, 14 Jun 2016 19:58:53 +0200 |
parents | 4926885f8a99 |
children |
line wrap: on
line source
export class ResultColumn { public name: string; public title: string; public sort: any; public show: boolean; constructor (name: string, title: string, sort='', show=false) { this.name = name; this.title = title; this.sort = sort; this.show = show; } }