1syntax = "proto3";
2
3package c;
4
5import "a/b/b1.proto";
6import "a/b/b2.proto";
7import "google/protobuf/timestamp.proto";
8
9message See {
10  a.b.BeeOne bee_one = 1;
11  a.b.BeeTwo bee_two = 2;
12  google.protobuf.Timestamp timestamp = 3;
13}
14