client/src/store/sessionRecord.js
author salimr <riwad.salim@yahoo.fr>
Tue, 09 Oct 2018 19:02:17 +0200
changeset 166 950a2350930f
parent 132 906a6c7c7943
child 168 ea92f4fe783d
permissions -rw-r--r--
Add css to Note component

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

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

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

}, 'Session');