import { IAddress } from './IAddress'; export interface IOrganisation{ Id:number CompanyName:string, Staff?:number, Type:string, Country:string Website:string, Email:string, Phone: string, LogoUrl?: string, PublicProfileNote?: string, PrivateProfileNote?: string, KeyWord?: string Industry?:string, IndustryId?:number, TypeId?:number, FirstName?:string, LastName?:string, Fax?:string, Address?:IAddress, localisationId?:number, ContactDetailsId? : number, LogoName?:string, IsOwner?:boolean, State?:string, City?:string }