Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 1 | // See README.txt for information and build instructions. |
| 2 | |
| 3 | syntax = "proto3"; |
| 4 | |
| 5 | package tutorial; |
| 6 | |
| 7 | option java_package = "com.example.tutorial"; |
| 8 | option java_outer_classname = "AddressBookProtos"; |
| 9 | option csharp_namespace = "Google.Protobuf.Examples.AddressBook"; |
| 10 | |
| 11 | message Person { |
| 12 | string name = 1; |
| 13 | int32 id = 2; // Unique ID number for this person. |
| 14 | string email = 3; |
| 15 | |
| 16 | enum PhoneType { |
| 17 | MOBILE = 0; |
| 18 | HOME = 1; |
| 19 | WORK = 2; |
| 20 | } |
| 21 | |
| 22 | message PhoneNumber { |
| 23 | string number = 1; |
| 24 | PhoneType type = 2; |
| 25 | } |
| 26 | |
| 27 | repeated PhoneNumber phones = 4; |
| 28 | } |
| 29 | |
| 30 | // Our address book file is just one of these. |
| 31 | message AddressBook { |
| 32 | repeated Person people = 1; |
| 33 | } |