mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
461 B
23 lines
461 B
8 years ago
|
syntax = "proto2";
|
||
|
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message Person {
|
||
|
required string name = 1 [(nanopb).max_size = 40];
|
||
|
required int32 id = 2;
|
||
|
optional string email = 3 [(nanopb).max_size = 40];
|
||
|
|
||
|
enum PhoneType {
|
||
|
MOBILE = 0;
|
||
|
HOME = 1;
|
||
|
WORK = 2;
|
||
|
}
|
||
|
|
||
|
message PhoneNumber {
|
||
|
required string number = 1 [(nanopb).max_size = 40];
|
||
|
optional PhoneType type = 2 [default = HOME];
|
||
|
}
|
||
|
|
||
|
repeated PhoneNumber phone = 4 [(nanopb).max_count = 5];
|
||
|
}
|