package org.simantics.structural2.procedural; import java.util.List; import org.simantics.db.Resource; public class Component implements SubstructureElement { public final String name; public final Resource type; public final List properties; public Component(String name, Resource type, List properties) { this.name = name; this.type = type; this.properties = properties; } }