UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

10 lines (8 loc) 276 B
import { BaseEntity } from './base.entity'; import { CommentComplainsEnum } from '../enums/comment.complains.enum'; export class CommentComplianceEntity extends BaseEntity { bookId: string; commentId: string; userId: string; complianceReason: CommentComplainsEnum; }