client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Thu, 06 Dec 2018 01:35:11 +0100
changeset 197 7ee10198f2e1
parent 168 ea92f4fe783d
permissions -rw-r--r--
Upgrade version to 0.2.0

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

export default Record({
  _id: '',

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

});