mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
fd789c445e
Implemented for Pebble and Pebble Time #103
15 lines
295 B
Java
15 lines
295 B
Java
package nodomain.freeyourgadget.gadgetbridge.deviceevents;
|
|
|
|
public class GBDeviceEventNotificationControl extends GBDeviceEvent {
|
|
public int handle;
|
|
|
|
public Event event = Event.UNKNOWN;
|
|
|
|
public enum Event {
|
|
UNKNOWN,
|
|
DISMISS,
|
|
DISMISS_ALL,
|
|
OPEN
|
|
}
|
|
}
|