/**
 *  \brief     GetdpNetwork class for storing network (circuit) data
 *  \details   GetdpNetwork class for storing network (circuit) data
 *  \author    vadims
 *  \date      Jan 16, 2020
 *  \warning   Improper use can crash your application
 *  \copyright CENOS LLC
 */

#ifndef GETDPNETWORK_HPP_
#define GETDPNETWORK_HPP_
#include <iostream>


class GetdpNetwork 
{
public:
	GetdpNetwork(std::string name_, std::string slvKey_, std::string typeKey_);

	std::string getName();
	std::string getGroup();
	std::string getSolverKey();
	std::string getTypeKey();

private:
	std::string name;
	std::string region;
	std::string group;
	std::string slvKey;
	std::string typeKey;

};

#endif //GETDPNETWORK_HPP_

