dhp-graph-dump/dump-schema/src/main/java/eu/dnetlib/dhp/skgif/model/Provenance.java

30 lines
436 B
Java

package eu.dnetlib.dhp.skgif.model;
import java.io.Serializable;
/**
* @author miriam.baglioni
* @Date 01/09/23
*/
public class Provenance implements Serializable {
private String type;
private double trust;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public double getTrust() {
return trust;
}
public void setTrust(double trust) {
this.trust = trust;
}
}