/**
 * File that have core Object for work with interface core, like directories, objects of error and others
 * 
 * @author Dmitry Amroyan
 * @version 1.0
 * @projectDescription loveNRG
 */

/**
 * Core data class
 * @param {JSONString} jsonData
 */
function CoreData(jsonData)
	{
		this.data = JSON.parse(jsonData);
	}