
com.openelements.hiero.base.data.NetworkSupplies Maven / Gradle / Ivy
package com.openelements.hiero.base.data;
import org.jspecify.annotations.NonNull;
import java.util.Objects;
public record NetworkSupplies(@NonNull String releasedSupply, @NonNull String totalSupply) {
public NetworkSupplies {
Objects.requireNonNull(releasedSupply, "releasedSupply must not be null");
Objects.requireNonNull(totalSupply, "totalSupply must not be null");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy