package eu.dnetlib.dhp.actionmanager.createunresolvedentities.model; import java.io.Serializable; import java.util.List; /** * represents the score in the input file */ public class Score implements Serializable { private String id; private List unit; public String getId() { return id; } public void setId(String id) { this.id = id; } public List getUnit() { return unit; } public void setUnit(List unit) { this.unit = unit; } }