client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Thu, 15 Jun 2017 12:41:44 +0200
changeset 38 04e02c64849c
parent 29 4cfeabef7d5e
child 58 f16a080e0bc4
permissions -rw-r--r--
add missing libraries

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
});