1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-30 08:46:16 +02:00
Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/deviceevents/GBDeviceEventNotificationControl.java

18 lines
380 B
Java
Raw Normal View History

package nodomain.freeyourgadget.gadgetbridge.deviceevents;
public class GBDeviceEventNotificationControl extends GBDeviceEvent {
public int handle;
public String phoneNumber;
public String reply;
public Event event = Event.UNKNOWN;
public enum Event {
UNKNOWN,
DISMISS,
DISMISS_ALL,
OPEN,
MUTE,
REPLY,
}
}