package paramsim.paramicssimulator;

/**
 * A class which encapsulates the data present in an Paramics incident status document.
 * 
 * @author Greg Eddington (geddingt@calpoly.edu)
 */
public class ParamicsSimulationInfo 
{
	/** The network ID **/
	public int networkId;

	/** The XML message **/
	public String xmlMessage;
	
	/** Constructor **/
	public ParamicsSimulationInfo(int networkId, String xmlMessage)
	{
		this.networkId = networkId;
		this.xmlMessage = xmlMessage;
	}
}
