package io.budgetapp.model; import java.io.Serializable; import java.util.Collections; import java.util.List; /** * */ public class Data implements Serializable { private static final long serialVersionUID = 18900214111166232L; private String x; private List<Double> y; public Data(String x, List<Double> y) { this.x = x; this.y = Collections.unmodifiableList(y); } public String getX() { return x; } public List<Double> getY() { return y; } }