1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2025-01-20 22:57:34 +01:00

25 lines
497 B
Java
Raw Normal View History

package nodomain.freeyourgadget.gadgetbridge.deviceevents;
import java.util.UUID;
public class GBDeviceEventAppManagement extends GBDeviceEvent {
public Event event = Event.UNKNOWN;
public EventType type = EventType.UNKNOWN;
public int token = -1;
public UUID uuid = null;
public enum EventType {
UNKNOWN,
INSTALL,
DELETE,
}
public enum Event {
UNKNOWN,
SUCCESS,
ACKNOLEDGE,
FAILURE,
REQUEST,
}
}