client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Thu, 08 Jun 2017 17:57:57 +0200
changeset 24 3b3999550508
parent 17 877d8796b86d
child 26 930e486ad0a8
permissions -rw-r--r--
first data model for backend

import Immutable from 'immutable';

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

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

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