module fb { export class Kommun extends fb.ResourceBase { KommunNamn: string; KommunId: number Kommunkod: string AegandeKontorId: number; //For view isEditable: fb.ChangeTrack; public static $rootName = "kommun"; constructor(data: any) { super(data, false, 'kommun'); this.isEditable = new fb.ChangeTrack(false); } } }