blob: 802ae0de1c93f69a19127d07d1aadc6703cc6a08 [file] [log] [blame]
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -05001// See README.txt for information and build instructions.
2
3syntax = "proto3";
4
5package voltha;
6
7import public "common.proto";
8
9option java_package = "com.example.tutorial";
10option java_outer_classname = "AddressBookProtos";
11option csharp_namespace = "Google.Protobuf.Examples.AddressBook";
12
13message 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}