client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Thu, 01 Jun 2017 18:46:34 +0200
changeset 17 877d8796b86d
parent 16 e67cd18cc594
child 26 930e486ad0a8
permissions -rw-r--r--
Store serialized HTML in note.

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',
});