argos/dmp-backend/core/src/main/java/eu/eudat/commons/types/descriptiontemplate/importmodel/fields/SchematicsImportXml.java

21 lines
556 B
Java

package eu.eudat.commons.types.descriptiontemplate.importmodel.fields;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import java.util.List;
@XmlRootElement(name = "schematics")
public class SchematicsImportXml {
private List<SchematicImportXml> schematics;
@XmlElement(name = "schematic")
public List<SchematicImportXml> getSchematics() {
return schematics;
}
public void setSchematics(List<SchematicImportXml> schematics) {
this.schematics = schematics;
}
}