blob: d0541b0263278efe32e105b30d6312b26148f770 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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;
}
}
|