Files
Flipper-ARF/assets/protobuf/desktop.proto
T
Andrea Santaniello d6c2757f21 First push, clean slate
2026-03-08 18:48:37 +01:00

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;
}