equal
deleted
inserted
replaced
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 }); |