client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Fri, 23 Jun 2017 15:21:43 +0200
changeset 81 a6bd1aaddc34
parent 78 49c5ea36d0a4
child 124 c77570164050
permissions -rw-r--r--
Add online/offline indicator.

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: ''
}, 'Note');