Skip to content

Instantly share code, notes, and snippets.

@torchhound
Created November 1, 2018 01:10
Show Gist options
  • Save torchhound/3556d59245365090a711bcdabbdb0b71 to your computer and use it in GitHub Desktop.
Save torchhound/3556d59245365090a711bcdabbdb0b71 to your computer and use it in GitHub Desktop.
mongo-crud models/Document.js
module.exports = class Document {
constructor(title, username, body) {
this.title = title
this.username = username
this.body = body
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment