export interface IBaseEntity {
    _id?: string | unknown;
}
export interface IBaseTimestampEntity {
    createdAt: Date;
    updatedAt: Date;
}
