package system.util;

/**
 * This is a structure that is used to store all temporary wr parameters
 * @author: Nikolai Rangelov
 */
public class 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
	public short marketKey;

}

