common-models/src/main/java/org/opencdmp/commonmodels/models/description/ExternalIdentifierModel.java

25 lines
450 B
Java
Raw Normal View History

2024-04-26 13:05:31 +02:00
package org.opencdmp.commonmodels.models.description;
2024-03-01 16:27:39 +01:00
public class ExternalIdentifierModel {
private String identifier;
private String type;
public String getIdentifier() {
return identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}