protobuf/examples/addressbook.proto

34 lines
663 B
Protocol Buffer
Raw Normal View History

2008-07-10 02:12:20 +00:00
// See README.txt for information and build instructions.
2015-07-20 21:32:57 +00:00
syntax = "proto3";
2008-07-10 02:12:20 +00:00
package tutorial;
option java_package = "com.example.tutorial";
option java_outer_classname = "AddressBookProtos";
2015-07-20 22:12:56 +00:00
option csharp_namespace = "Google.Protobuf.Examples.AddressBook";
2008-07-10 02:12:20 +00:00
message Person {
2015-07-20 21:32:57 +00:00
string name = 1;
int32 id = 2; // Unique ID number for this person.
string email = 3;
2008-07-10 02:12:20 +00:00
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
message PhoneNumber {
2015-07-20 21:32:57 +00:00
string number = 1;
PhoneType type = 2;
2008-07-10 02:12:20 +00:00
}
2015-07-20 21:32:57 +00:00
repeated PhoneNumber phones = 4;
2008-07-10 02:12:20 +00:00
}
// Our address book file is just one of these.
message AddressBook {
2015-07-20 21:32:57 +00:00
repeated Person persons = 1;
2008-07-10 02:12:20 +00:00
}