client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Mon, 19 Jun 2017 11:56:06 +0200
changeset 46 4aa24724e5b3
parent 29 4cfeabef7d5e
child 58 f16a080e0bc4
permissions -rw-r--r--
Move session form to dedicated component.

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: []
});