package market.util;

/**
 * Insert the type's description here.
 * Creation date: (27.1.2000 “. 16:53:43)
 * @author: tin
 */
public class M_DocsCachElem {
	public long srcKey;
	public long lastModified;
	public byte flag;
/**
 * M_DocsCachElem constructor comment.
 */
public M_DocsCachElem() {
	super();
}
/**
 * Construct instance with value for field.
 * Creation date: (28.1.2000 “. 15:05:38)
 * @param srcKey int
 * @param time long
 * @param flag byte
 */
public M_DocsCachElem( long srcKey, long time, byte flag) {
	super();

	this.srcKey = srcKey;
	this.lastModified = time;
	this.flag = flag;
	
}
}

