Welcome to mirror list, hosted at ThFree Co, Russian Federation.

property.proto - github.com/flipperdevices/flipperzero-protobuf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f164ce0482919164df194e3c94a125967aada60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}