argos/dmp-backend/core/src/main/java/eu/eudat/commons/types/description/PropertyDefinitionEntity.java

19 lines
420 B
Java
Raw Normal View History

2023-11-07 09:29:27 +01:00
package eu.eudat.commons.types.description;
import java.util.Map;
2023-11-07 09:29:27 +01:00
public class PropertyDefinitionEntity {
private Map<String, PropertyDefinitionFieldSetEntity> fieldSets;
2023-11-07 09:29:27 +01:00
public Map<String, PropertyDefinitionFieldSetEntity> getFieldSets() {
return fieldSets;
2023-11-07 09:29:27 +01:00
}
public void setFieldSets(Map<String, PropertyDefinitionFieldSetEntity> fieldSets) {
this.fieldSets = fieldSets;
2023-11-07 09:29:27 +01:00
}
}