package org.simantics.structural2.scl; import org.simantics.db.Resource; import org.simantics.scl.compiler.types.Type; public class ComponentTypeProperty { public final Resource relation; public final Type type; public ComponentTypeProperty(Resource relation, Type type) { this.relation = relation; this.type = type; } }