summaryrefslogtreecommitdiff
path: root/protocol_buffer_map/map.proto
blob: f7946820a047bf73c18e278df385fbe34894558a (plain)
1
2
3
4
5
6
7
8
9
message Pair {
  required string key = 1;
  required int32 value = 2;
}

message Map {
  repeated Pair pairs = 1;
}