tcc/FlaskAPI/person.proto

9 lines
163 B
Protocol Buffer
Raw Permalink Normal View History

2023-11-04 20:05:55 +00:00
syntax = "proto3";
message Person {
string name = 1;
int32 age = 2;
repeated string friends = 3;
string email = 4;
string phone = 5;
}