import { IContactPositions } from './IContactPositions'; import { ICountry } from './ICountry'; import { IState } from './IState'; import { IContactDetails } from './IContactDetails'; import { ICompanyContacts } from './ICompanyContacts'; export interface ICompanyDetails { CompanyId?: number; CompanyName?: string; Website?: string; Industry?: string; Phone?: string; Owner?: string; Type?: string; Address?: string; State?: IState; CityName?: string; PostalCode?: string; Country?: ICountry; NoOfEmployee?: number; TimeZone?: string; Description?: string; ContactPositionsList?: IContactPositions; Logo?: string; Code?: string; Address2?: string; ContactDetails?: IContactDetails; CompanyContacts?: ICompanyContacts; StaffID?: number; }