client/src/store/noteRecord.js
author salimr <riwad.salim@yahoo.fr>
Tue, 09 Oct 2018 19:07:47 +0200
changeset 167 1f340f3597a8
parent 129 d48946d164c6
child 168 ea92f4fe783d
permissions -rw-r--r--
Adapt css for CreateSession and Navbar components

import Immutable from 'immutable';
import { ActionEnum } from '../constants';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: '',
  action: ActionEnum.NONE
}, 'Note');