export interface CompanyProfile {
    id: string;
    companyId: string;
    description: string;
    profileImageUrl: string;
    homepageUrl: string;
    linkedinUrl: string;
    city: string;
    state: string;
    country: string;
    createdAt: Date;
    updatedAt: Date;
}
