package gr.uoa.di.web.utils.ep;

public class RelatedNode {
	private String relation;
	private Node node;
	
	public RelatedNode(String relation, Node node) {
		this.relation = relation;
		this.node = node;
	}
	
	public String getRelation() {
		return relation;
	}
	
	public Node getNode() {
		return node;
	}
}
