client/src/store/sessionRecord.js
author salimr <riwad.salim@yahoo.fr>
Tue, 14 Aug 2018 20:34:50 +0200
changeset 143 cfcbf4bc66f1
parent 132 906a6c7c7943
child 168 ea92f4fe783d
permissions -rw-r--r--
Remove react-bootstrap from components except Modal, Collapse and Dropdown

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

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

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

}, 'Session');