Created
November 1, 2018 01:10
-
-
Save torchhound/3556d59245365090a711bcdabbdb0b71 to your computer and use it in GitHub Desktop.
mongo-crud models/Document.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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