10 lines
258 B
JavaScript
10 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;
|
||
|
}
|
||
|
}
|