package market.util;

/**
 * Contain all filds for/from DB.
 * Creation date: (02.2.2000 “. 20:01:40)
 * @author: tin
 */
public class M_DocsDBElem {
	public long srcKey;
	public long lastModified;
	public long fetchData;
	public int usedCounts;
/**
 * M_DocsDBElem constructor comment.
 */
public M_DocsDBElem() {
	super();
}
/**
 * Construct instance with value of dB field.
 * Creation date: (28.1.2000 “. 15:05:38)
 * @param srcKey int
 * @param lastModified long
 * @param fetchData long
 * @param usedCounts int
 */
public M_DocsDBElem( long srcKey, long lastModified, long fetchData, int usedCounts ) {
	super();

	this.srcKey = srcKey;
	this.lastModified = lastModified;
	this.fetchData= fetchData;
	this.usedCounts = usedCounts;
	
}
}

