Merge branch 'master' of ssh://apples.lambdacomplex.org/git/busui
[busui.git] / lib / Protobuf-PHP / tests / protos / repeated.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
package tests;

message Repeated {

  message Nested {
    optional int32 id = 1;
  }

  repeated string string = 1;
  repeated int32 int = 2;
  repeated Nested nested = 3;
}