AndroidAPS/app/src/main/java/de/jotomo/ruffyscripter/commands/PumpAlert.java

20 lines
405 B
Java
Raw Normal View History

package de.jotomo.ruffyscripter.commands;
public class PumpAlert {
public final int code;
public final String msg;
public PumpAlert(int code, String msg) {
this.code = code;
this.msg = msg;
}
@Override
public String toString() {
return "PumpAlert{" +
"code=" + code +
", msg='" + msg + '\'' +
'}';
}
}