client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Thu, 08 Nov 2018 16:03:28 +0100
changeset 171 03334a31130a
parent 168 ea92f4fe783d
permissions -rw-r--r--
Add translation with react-i18next

import { Record } from '.';
import { ActionEnum } from '../constants';

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

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