14 lines
207 B
Protocol Buffer
14 lines
207 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package importtest;
|
||
|
|
||
|
import "phonenumber.proto";
|
||
|
|
||
|
message Person {
|
||
|
optional string name = 1;
|
||
|
optional int32 id = 2;
|
||
|
optional string email = 3;
|
||
|
|
||
|
repeated PhoneNumber phones = 4;
|
||
|
}
|