client/src/store/noteRecord.js
author Alexandre Segura <mex.zktk@gmail.com>
Mon, 26 Jun 2017 16:48:52 +0200
changeset 91 143ff08ec2cc
parent 78 49c5ea36d0a4
child 124 c77570164050
permissions -rw-r--r--
DRY

import Immutable from 'immutable';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: ''
}, 'Note');