client/src/store/noteRecord.js
changeset 129 d48946d164c6
parent 124 c77570164050
child 168 ea92f4fe783d
equal deleted inserted replaced
128:34a75bd8d0b9 129:d48946d164c6
     1 import Immutable from 'immutable';
     1 import Immutable from 'immutable';
       
     2 import { ActionEnum } from '../constants';
     2 
     3 
     3 export default Immutable.Record({
     4 export default Immutable.Record({
     4   _id: '',
     5   _id: '',
     5   session: '',
     6   session: '',
     6 
     7 
    12   finishedAt: '',
    13   finishedAt: '',
    13 
    14 
    14   categories: [],
    15   categories: [],
    15 
    16 
    16   marginComment: '',
    17   marginComment: '',
    17   deleted: false,
    18   action: ActionEnum.NONE
    18   modified: true
       
    19 }, 'Note');
    19 }, 'Note');