client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Sat, 24 Nov 2018 09:31:16 +0100
changeset 175 6fcda59daff8
parent 168 ea92f4fe783d
permissions -rw-r--r--
Correct requirements

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

export default Record({
  _id: '',

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

});