Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 1 | // See README.txt for information and build instructions. |
| 2 | |
| 3 | syntax = "proto3"; |
| 4 | |
| 5 | package voltha; |
| 6 | |
| 7 | import public "common.proto"; |
| 8 | |
| 9 | option java_package = "com.example.tutorial"; |
| 10 | option java_outer_classname = "AddressBookProtos"; |
| 11 | option csharp_namespace = "Google.Protobuf.Examples.AddressBook"; |
| 12 | |
| 13 | message Person { |
| 14 | string name = 1; |
| 15 | int32 id = 2; // Unique ID number for this person. |
| 16 | string email = 3; |
| 17 | |
| 18 | LogLevel.LogLevel log_level = 4; |
| 19 | } |