client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Sat, 01 Dec 2018 02:38:21 +0100
changeset 189 3470535a6caa
parent 168 ea92f4fe783d
permissions -rw-r--r--
Added tag 0.1.1 for changeset 00cf90eb0f5a

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

export default Record({
  _id: '',

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

});