'use strict';

import {Record, List, Map} from 'immutable';

let InitialState = Record({
	isFetching: false,
	list: List(),
	currentPage: 0,
	endReached: false,
	similarIndex: -1,
	total: 0,
	pageSize: 12,
	pageCount: 0,
});

export default InitialState;