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