CommentEntity.js 243 B

123456789101112
  1. class CommentEntity {
  2. constructor() {
  3. this.CommentID = ''
  4. this.ArticleID = ''
  5. this.Content = ''
  6. this.UserID = ''
  7. this.createdAt = ''
  8. this.updateAt = ''
  9. }
  10. }
  11. module.exports = CommentEntity