mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-28 14:48:18 +08:00
36 lines
439 B
Protocol Buffer
36 lines
439 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package foo;
|
||
|
|
||
|
message Person {
|
||
|
string name = 1;
|
||
|
int32 id = 2;
|
||
|
string email = 3;
|
||
|
|
||
|
enum PhoneType {
|
||
|
MOBILE = 0;
|
||
|
HOME = 1;
|
||
|
WORK = 2;
|
||
|
}
|
||
|
|
||
|
message PhoneNumber {
|
||
|
string number = 1;
|
||
|
PhoneType type = 2;
|
||
|
}
|
||
|
|
||
|
repeated PhoneNumber phone = 4;
|
||
|
}
|
||
|
|
||
|
message LookupResult
|
||
|
{
|
||
|
Person person = 1;
|
||
|
}
|
||
|
|
||
|
message Name {
|
||
|
string name = 1;
|
||
|
};
|
||
|
|
||
|
service DirLookup {
|
||
|
rpc ByName (Name) returns (LookupResult);
|
||
|
}
|