client/src/store/noteRecord.js
author duong tam kien <tk@deveha.com>
Fri, 28 Jul 2017 18:22:46 +0200
changeset 127 006c5270128c
parent 124 c77570164050
child 129 d48946d164c6
permissions -rw-r--r--
updates TODO in README

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: '',
  deleted: false,
  modified: true
}, 'Note');