// MongoDB Wishlist Model Schema
export interface Wishlist {
  _id?: string;
  userId: string;
  productId: string;
  createdAt?: Date;
}

