package gve.calc.formula;

public class ReplacedMessage {
	public Part old;
	public Part byThat;

	public ReplacedMessage(Part old,Part byThat) {
		this.old = old;
		this.byThat = byThat;
	}
}