![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.liverig.witsml.objects.CurrencyValue Maven / Gradle / Ivy
The newest version!
package net.intelie.liverig.witsml.objects;
public class CurrencyValue {
private String currency;
private Double value;
public CurrencyValue(String currency, Double value) {
this.currency = currency;
this.value = value;
}
public String getCurrency() {
return currency;
}
public Double getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy