client/src/store/sessionRecord.js
author salimr <riwad.salim@yahoo.fr>
Fri, 31 Aug 2018 15:15:29 +0200
changeset 152 4e9e755cef51
parent 132 906a6c7c7943
child 168 ea92f4fe783d
permissions -rw-r--r--
Add CreateSession component

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

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

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

}, 'Session');