package org.simantics.db.layer0.util; import org.simantics.graph.representation.TransferableGraph1; public class ModelDependency { public String uri; public TransferableGraph1 tg; public ModelDependency() { uri = ""; tg = new TransferableGraph1(); } public ModelDependency(String uri, TransferableGraph1 tg) { this.uri = uri; this.tg = tg; } }