client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Fri, 09 Jun 2017 15:24:53 +0200
changeset 26 930e486ad0a8
parent 17 877d8796b86d
child 29 4cfeabef7d5e
permissions -rw-r--r--
Store categories in note.

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
});