package eu.dnetlib.openaire.api.objects;

/**
 * Created by michele on 02/12/15.
 */
public class PidEntry {

	private String type;
	private String value;

	public PidEntry() {
	}

	public PidEntry(final String type, final String value) {
		this.type = type;
		this.value = value;
	}

	public String getType() {
		return type;
	}

	public void setType(final String type) {
		this.type = type;
	}

	public String getValue() {
		return value;
	}

	public void setValue(final String value) {
		this.value = value;
	}
}
