export interface IBaseModelWithIdAndDates { id: string; createdAt?: Date | null; updatedAt?: Date | null; merchantId?: string | null; deleted?: boolean | null; }