client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Tue, 18 Jul 2017 17:59:28 +0200
changeset 118 2cb8d11aa9ca
parent 78 49c5ea36d0a4
child 124 c77570164050
permissions -rw-r--r--
make description field optional for group

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: ''
}, 'Note');