export interface Company {
    id: string;
    name: string;
    ticker: string;
    createdAt: Date;
    updatedAt: Date;
}
