added the new Programme POJO. It contains the code and the description of the programme

This commit is contained in:
Miriam Baglioni 2020-05-20 10:27:27 +02:00
parent eb0e47ba53
commit d323100af0
1 changed files with 19 additions and 0 deletions

View File

@ -1,4 +1,23 @@
package eu.dnetlib.dhp.schema.oaf;
public class Programme {
private String code;
private String description;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}