gitlab-ce/app/assets/javascripts/diff_notes/models/note.js.es6

12 lines
305 B
JavaScript

/* eslint-disable camelcase, no-unused-vars */
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;
}
}