client/src/store/noteRecord.js
changeset 168 ea92f4fe783d
parent 129 d48946d164c6
equal deleted inserted replaced
167:1f340f3597a8 168:ea92f4fe783d
     1 import Immutable from 'immutable';
     1 import { Record } from '.';
     2 import { ActionEnum } from '../constants';
     2 import { ActionEnum } from '../constants';
     3 
     3 
     4 export default Immutable.Record({
     4 export default Record({
     5   _id: '',
     5   _id: '',
     6   session: '',
     6   session: '',
     7 
     7 
     8   plain: '',
     8   plain: '',
     9   raw: {},
     9   raw: {},
    14 
    14 
    15   categories: [],
    15   categories: [],
    16 
    16 
    17   marginComment: '',
    17   marginComment: '',
    18   action: ActionEnum.NONE
    18   action: ActionEnum.NONE
    19 }, 'Note');
    19 });