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

10 lines
140 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
message Address {
string street = 1;
string city = 2;
string state = 3;
string zip = 4;
string country = 5;
}