mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-05-10 18:05:09 +00:00
14 lines
214 B
Protocol Buffer
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;
|
|
}
|