module fb { export class TextMall extends ResourceBase { Aemne: string; Innehaall: string; KontorsgruppId: number; MallTyp: number; Namn: string; TextMallId: number; Sorteringsordning: number; Mottagare: string; isGlobalMall() { return this.KontorsgruppId === null; } public static $rootName = 'textMall'; constructor(data: any) { //this.valid = true; super(data, false, TextMall.$rootName,false, false); } getPrimaryKey(): any { return this.TextMallId; } } }