client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Fri, 16 Jun 2017 18:36:39 +0200
changeset 44 3b20e2b584fe
parent 29 4cfeabef7d5e
child 58 f16a080e0bc4
permissions -rw-r--r--
Introduce authentication through API.

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
});