client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Thu, 06 Dec 2018 01:35:30 +0100
changeset 198 f0f83f5530a6
parent 168 ea92f4fe783d
permissions -rw-r--r--
Added tag 0.2.0 for changeset 7ee10198f2e1

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

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

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