1syntax = "proto3"; 2 3import "google/protobuf/empty.proto"; 4import "b/c/c.proto"; 5 6package a.b; 7 8message B { 9 string name = 1; 10 11 google.protobuf.Empty empty = 2; 12 13 a.b.c.C c = 3; 14} 15