client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Mon, 24 Jul 2017 16:58:34 +0200
changeset 126 ba8bc0199464
parent 124 c77570164050
child 129 d48946d164c6
permissions -rw-r--r--
add log api for syncing

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: '',
  deleted: false,
  modified: true
}, 'Note');