All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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