package eu.dnetlib.broker.objects;

/**
 * Created by claudio on 22/07/16.
 */
public class Pid {

	private String value;

	private String type;

	public Pid() {}

	public String getValue() {
		return this.value;
	}

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

	public String getType() {
		return this.type;
	}

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