package market.market_util;

/**
 * This is a structure that is used to store all temporary wr parameters
 * @author: Nikolai Rangelov
 */
public class market_wrParameters {
	public long wrKey; // word row key
	public String wrString; // word row itself
	public long wrCounts; // specific wordRow counts
	public short langKey; // word row language key
	public int srcKey; // URL
}

