/**
 * Company info.
 */
export interface CompanyInfo {
    symbol: string;
    name: string;
    sector: string;
    subIndustry: string;
}
