client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Wed, 14 Jun 2017 18:41:43 +0200
changeset 37 5ce9218fb3e0
parent 29 4cfeabef7d5e
child 58 f16a080e0bc4
permissions -rw-r--r--
small doc additions to the readme

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
});