1syntax = "proto3"; 2 3message Cat { 4 int32 Age = 1; 5 string Breed = 2; 6 string Name = 3; 7}
View as plain text