10 lines
116 B
Protocol Buffer
10 lines
116 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
import "PropValue.proto";
|
||
|
|
||
|
message PropPair {
|
||
|
PropValue prop_value = 2;
|
||
|
uint32 type = 1;
|
||
|
}
|