package market.util;

/**
 * Insert the type's description here.
 * Creation date: (07.6.2000 “. 16:48:34)
 * @author: 
 */
public class Wr_Rw_rateElement {

  public int wr_count;
  public int rw_count;	
	
/**
 * Wr_Rw_rateElement constructor comment.
 */
public Wr_Rw_rateElement( int wrCount, int rwCount ) {
	super();
	wr_count = wrCount;
	rw_count = rwCount;
}
}

