package eu.eudat.models.properties; import eu.eudat.models.user.components.datasetprofile.*; import java.util.List; /** * Created by ikalyvas on 1/19/2018. */ 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; } }