import { TProductReview } from '@cromwell/core'; import { BasePageEntity } from './base-page.entity'; import { Product } from './product.entity'; export declare class ProductReview extends BasePageEntity implements TProductReview { productId?: number | null; product?: Product | null; title?: string | null; description?: string | null; rating?: number | null; userEmail?: string | null; userName?: string | null; userId?: number | null; approved?: boolean | null; } //# sourceMappingURL=product-review.entity.d.ts.map