package test.appProfConverter.dcworms; public class PhaseState { public int state; public double frequency; public double voltage; public double powerUsageMin; public double powerUsageMax; public PhaseState(int state, double frequency, double voltage, double powerUsageMin, double powerUsageMax) { super(); this.state = state; this.frequency = frequency; this.voltage = voltage; this.powerUsageMin = powerUsageMin; this.powerUsageMax = powerUsageMax; } }