mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
12 lines
300 B
Java
12 lines
300 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.protocol;
|
||
|
|
||
|
import nodomain.freeyourgadget.gadgetbridge.GBDeviceApp;
|
||
|
|
||
|
public class GBDeviceCommandAppInfo extends GBDeviceCommand {
|
||
|
public GBDeviceApp apps[];
|
||
|
|
||
|
public GBDeviceCommandAppInfo() {
|
||
|
commandClass = CommandClass.APP_INFO;
|
||
|
}
|
||
|
}
|