mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 18:41:14 +01:00
14 lines
274 B
Java
14 lines
274 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,
|
||
|
OPEN
|
||
|
}
|
||
|
}
|