client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Thu, 22 Jun 2017 12:09:48 +0200
changeset 74 043477fd5c5c
parent 62 b2514a9bcd49
child 101 e165aa89ac82
permissions -rw-r--r--
add api call to save notes. internally use ts for time data for notes and session

import Immutable from 'immutable';

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

  title: '',
  description: '',

  date: '',

}, 'Session');