client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Fri, 23 Jun 2017 18:20:50 +0200
changeset 85 e17899ced2b8
parent 78 49c5ea36d0a4
child 124 c77570164050
permissions -rw-r--r--
add a test for updating nodes

import Immutable from 'immutable';

export default Immutable.Record({
  _id: '',
  session: '',

  plain: '',
  raw: {},
  html: '',

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: ''
}, 'Note');