package eu.eudat.models.user.composite; import eu.eudat.models.user.components.datasetprofile.Section; import java.util.List; public class DatasetProfilePage { private Integer ordinal; private String title; private List
sections; public Integer getOrdinal() { return ordinal; } public void setOrdinal(Integer ordinal) { this.ordinal = ordinal; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public List
getSections() { return sections; } public void setSections(List
sections) { this.sections = sections; } }