11 lines
No EOL
129 B
Protocol Buffer
11 lines
No EOL
129 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package mapmessage;
|
|
|
|
message Test {
|
|
map<string, Nested> items = 1;
|
|
}
|
|
|
|
message Nested {
|
|
int32 count = 1;
|
|
} |