LikeEntity.js 202 B

1234567891011
  1. class LikeEntity{
  2. constructor() {
  3. this.LikeID = ''
  4. this.UserID = ''
  5. this.ArticleID = ''
  6. this.CreatedAt = ''
  7. this.Type = 0
  8. }
  9. }
  10. module.exports = LikeEntity