client/src/store/noteRecord.js
author duong tam kien <tk@deveha.com>
Mon, 10 Jul 2017 16:15:52 +0200
changeset 113 33a04d0a7ecc
parent 78 49c5ea36d0a4
child 124 c77570164050
permissions -rw-r--r--
adds note taking lifecycle diagram

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: ''
}, 'Note');