export interface Company {
    id: string;
    name: string;
    activity: string;
    employeesTreatment: string;
    numberOfEmployees: number;
    operationField: string;
    cnpj: string;
    image: string;
    color: string;
    paid: boolean;
    createdAt: Date;
    updatedAt: Date;
}
