import {productInterface} from './product';

export interface favoriteInterface {
  _id: string;
  userId: string;
  productId: string;
  created_at: string;
  product: productInterface;
}
