Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
154 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
import "address.proto";
import "contact.proto";
message Company {
string name = 1;
Address address = 2;
Contact contact = 3;
}