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

14 lines
214 B
Protocol Buffer

syntax = "proto3";
package PB_Property;
option java_package = "com.flipperdevices.protobuf.property";
message GetRequest {
string key = 1;
}
message GetResponse {
string key = 1;
string value = 2;
}