repository-deposit-base/depositinterface/src/main/java/eu/eudat/depositinterface/models/ResearcherDepositModel.java

21 lines
433 B
Java
Raw Normal View History

2022-12-06 12:28:08 +01:00
package eu.eudat.depositinterface.models;
public class ResearcherDepositModel {
private String label;
private String reference;
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public String getReference() {
return reference;
}
public void setReference(String reference) {
this.reference = reference;
}
}