gitlab-org--gitlab-foss/app/assets/javascripts/diff_notes/models/note.js.es6
2016-10-26 10:02:58 +02:00

10 lines
279 B
JavaScript

/* eslint-disable */
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;
}
}