module fb { export class NyKontakt extends NavigationsObjekt { TempId: number; NyaKontakten: NyaKontakten; constructor(tempId: number) { super({}); //NavigationsObjekt this.TempId = tempId; this.NyaKontakten = new fb.NyaKontakten(); this.ObjektTypId = 4; // Detta tillsvidare... this.Visningstext = null; this.BildUrl = null; } } export class NyaKontakten { KommunId: number LandId: number ; Adress: string; constructor() { var self = this; } } }