client/src/store/sessionRecord.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: '',

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

});