summaryrefslogtreecommitdiff
path: root/protocol_buffer_map/map.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocol_buffer_map/map.proto')
-rw-r--r--protocol_buffer_map/map.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/protocol_buffer_map/map.proto b/protocol_buffer_map/map.proto
new file mode 100644
index 0000000..f794682
--- /dev/null
+++ b/protocol_buffer_map/map.proto
@@ -0,0 +1,9 @@
+message Pair {
+ required string key = 1;
+ required int32 value = 2;
+}
+
+message Map {
+ repeated Pair pairs = 1;
+}
+