client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Tue, 18 Dec 2018 02:29:05 +0100
changeset 201 942abb06295d
parent 168 ea92f4fe783d
permissions -rw-r--r--
Added tag 0.2.1 for changeset 1b9b9401ba7c

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

export default Record({
  _id: '',

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

});