- class ArticleEntity {
- constructor() {
- this.articleID = ''
- this.title = ''
- this.authorID = ''
- this.createdAt = null
- this.updatedAt = null
- this.description = ''
- this.content = ''
- this.likeCount = 0
- this.disliskCount = 0
- this.commentCount = 0
- }
- }
- module.exports = ArticleEntity
|