mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-05-10 19:27:11 +00:00
21 lines
272 B
Protocol Buffer
21 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package PB_Desktop;
|
|
option java_package = "com.flipperdevices.protobuf.desktop";
|
|
|
|
message IsLockedRequest {
|
|
}
|
|
|
|
message UnlockRequest {
|
|
}
|
|
|
|
message StatusSubscribeRequest {
|
|
}
|
|
|
|
message StatusUnsubscribeRequest {
|
|
}
|
|
|
|
message Status {
|
|
bool locked = 1;
|
|
}
|