debian-mirror-gitlab/app/assets/javascripts/diff_notes/models/note.js.es6
2016-09-13 17:45:13 +05:30

9 lines
258 B
JavaScript

class NoteModel {
constructor (discussionId, noteId, canResolve, resolved, resolved_by) {
this.discussionId = discussionId;
this.id = noteId;
this.canResolve = canResolve;
this.resolved = resolved;
this.resolved_by = resolved_by;
}
}