import { TPostComment } from '@cromwell/core'; import { BasePageEntity } from './base-page.entity'; import { Post } from './post.entity'; export declare class PostComment extends BasePageEntity implements TPostComment { postId: number; post: Post; title?: string; comment?: string; userEmail?: string; userName?: string; userId?: number; approved?: boolean; } //# sourceMappingURL=post-comment.entity.d.ts.map