mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
11 lines
297 B
Java
11 lines
297 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.protocol;
|
||
|
|
||
|
public class GBDeviceCommandVersionInfo extends GBDeviceCommand {
|
||
|
public String fwVersion = "N/A";
|
||
|
public String hwVersion = "N/A";
|
||
|
|
||
|
public GBDeviceCommandVersionInfo() {
|
||
|
commandClass = CommandClass.VERSION_INFO;
|
||
|
}
|
||
|
}
|