summaryrefslogtreecommitdiff
path: root/client/js/models/note_list.js
blob: 10db435495aa253200e580625f00c1251f3aa3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

const AbstractList = require("./abstract_list.js");
const Note = require("./note.js");

class NoteList extends AbstractList {}

NoteList._itemClass = Note;
NoteList._itemName = "note";

module.exports = NoteList;