client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Thu, 06 Dec 2018 01:33:54 +0100
changeset 196 ef9cde55d9f1
parent 168 ea92f4fe783d
permissions -rw-r--r--
update venv

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

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

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