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

15 lines
282 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
import "team.proto";
import "contact.proto";
option java_package = "group.org.prod.schemas.customers";
option java_outer_classname = "EmployeeProto";
message Employee {
string first_name = 1;
string last_name = 2;
Team team = 3;
Contact contact = 4;
}