summaryrefslogtreecommitdiff
path: root/protocol_buffer_map/map.proto
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-08-16 21:29:30 +0100
committerPatrick Simianer <p@simianer.de>2014-08-16 21:29:30 +0100
commitad6fdf99c86150a0e72c5094d1379b39b83a148d (patch)
treea19ff1e9be98871d117f81ca2c5ef602ec779c2c /protocol_buffer_map/map.proto
parentb822f350e3936c2aa16ca73355afee28e6b4454c (diff)
protocol buffer map
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;
+}
+