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