hmci/src/main/java/biz/nellemann/hmci/dto/json/EnergyUtil.java

12 lines
287 B
Java
Raw Normal View History

package biz.nellemann.hmci.dto.json;
2023-01-05 13:28:12 +00:00
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public final class EnergyUtil {
public PowerUtil powerUtil = new PowerUtil();
public ThermalUtil thermalUtil = new ThermalUtil();
}