client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Fri, 30 Nov 2018 22:05:02 +0100
changeset 187 7c745d8cb321
parent 168 ea92f4fe783d
permissions -rw-r--r--
Added tag 0.1.0 for changeset 3458941945e0

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

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

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