Mercurial > hg > ng2-query-ismi
view app/result-column.ts @ 36:e8dc6a4c6773
only show possible incoming/outgoing relation types.
author | casties |
---|---|
date | Thu, 11 Feb 2016 17:06:40 +0100 |
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; } }