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

10 lines
183 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
option java_package = "group.org.prod.schemas.contact";
option java_outer_classname = "ContactProto";
message Contact {
string email = 1;
string phone = 2;
}