note.js 336 Bytes
Newer Older
1 2
/* eslint-disable camelcase, no-unused-vars */

3
class NoteModel {
4
  constructor(discussionId, noteId, canResolve, resolved, resolved_by) {
5
    this.discussionId = discussionId;
6
    this.id = noteId;
7
    this.canResolve = canResolve;
8
    this.resolved = resolved;
9
    this.resolved_by = resolved_by;
10 11
  }
}
12 13

window.NoteModel = NoteModel;