client/src/store/sessionRecord.js
author salimr <riwad.salim@yahoo.fr>
Thu, 16 Aug 2018 22:32:36 +0200
changeset 146 4f4bb2b3ef39
parent 132 906a6c7c7943
child 168 ea92f4fe783d
permissions -rw-r--r--
Removing Modal from react-bootstrap and adding react-modal

import Immutable from 'immutable';
import { ActionEnum } from '../constants';

export default Immutable.Record({
  _id: '',

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

}, 'Session');