Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. syntax = "proto3";
  2.  
  3. message Person {
  4. int32 age = 1;
  5. string first_name = 2;
  6. string last_name = 3;
  7. bytes small_picture = 4;
  8. bool is_profile_verified = 5;
  9. float height = 6;
  10.  
  11. repeated string phone_numbers = 7;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement