export interface IBase {
    active: boolean;
    companyId: string;
    containerId: string;
    createdAt: Date;
    id: string;
    updatedAt: Date;
}
