UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

10 lines (8 loc) 210 B
import { BaseEntity } from './base.entity'; export class BookComment extends BaseEntity { bookId: string; username: string; text: string; likeInteractions: string[]; dislikeInteractions: string[]; }