mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
17 lines
288 B
Protocol Buffer
17 lines
288 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package a.b.c;
|
||
|
|
||
|
message TopLevel {
|
||
|
optional uint32 field = 1 [default = 0];
|
||
|
optional NestedTypeA foo = 2;
|
||
|
|
||
|
message NestedTypeA {
|
||
|
optional NestedTypeB bar = 1;
|
||
|
|
||
|
message NestedTypeB {
|
||
|
optional uint32 foobar = 1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|