client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Fri, 30 Nov 2018 14:49:19 +0100
changeset 184 aac6db7cea99
parent 168 ea92f4fe783d
permissions -rw-r--r--
first version of deploy script + set version to 0.1.0

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

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

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

  startedAt: '',
  finishedAt: '',

  categories: [],

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