mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 19:11:12 +01:00
22 lines
492 B
Java
22 lines
492 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.protocol;
|
||
|
|
||
|
public class GBDeviceCommandAppManagementResult extends GBDeviceCommand {
|
||
|
public Result result = Result.UNKNOWN;
|
||
|
public CommandType type = CommandType.UNKNOWN;
|
||
|
|
||
|
public GBDeviceCommandAppManagementResult() {
|
||
|
commandClass = CommandClass.APP_MANAGEMENT_RES;
|
||
|
}
|
||
|
|
||
|
public enum CommandType {
|
||
|
UNKNOWN,
|
||
|
DELETE,
|
||
|
}
|
||
|
|
||
|
public enum Result {
|
||
|
UNKNOWN,
|
||
|
SUCCESS,
|
||
|
FAILURE,
|
||
|
}
|
||
|
}
|