mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-15 11:31:16 +01:00
10 lines
272 B
Java
10 lines
272 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.deviceevents;
|
||
|
|
||
|
public class GBDeviceEventDismissNotification extends GBDeviceEvent {
|
||
|
public int notificationID;
|
||
|
|
||
|
public GBDeviceEventDismissNotification() {
|
||
|
eventClass = EventClass.DISMISS_NOTIFICATION;
|
||
|
}
|
||
|
}
|