(noteId , title , content , createdBy , createdOn)
| 1 | exports.Note = class Note { |
| 2 | |
| 3 | constructor(noteId , title , content , createdBy , createdOn){ |
| 4 | this.noteId = noteId; |
| 5 | this.title = title; |
| 6 | this.content = content; |
| 7 | this.createdBy = createdBy; |
| 8 | this.createdOn = createdOn; |
| 9 | } |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected