package system.util;

/**
 * This is a class-structure that holds key-marketKey relation. It is used to be throwen through
 * <br>the queue from wr/rw/Server to wr/rw/SumDB_ResolveThread.
 * @author: Nikolai Rangelov
 */
public class Key_MarketKey_Relation 
{
 public long Key;
 public short marketKey;
 public long Counts;
 public long RegDate;
 public long LastCount;
// public byte State;
/**
 * Inits all variables with zero based values.
 */
public Key_MarketKey_Relation() {
	super();
	Key = Constants.No_Key;
	marketKey = Constants.No_MarketKey;
	Counts = 0;
	RegDate = 0;
	LastCount = 0;
	//  State = Constants.New_Relation;
}
}

