class CommentEntity { constructor() { this.CommentID = '' this.ArticleID = '' this.Content = '' this.UserID = '' this.createdAt = '' this.updateAt = '' } } module.exports = CommentEntity