syntax = "proto3";

message Foo {
  int32 x = 1;
  int32 y = 2;

  string name = 3;
  string value = 4;
}

message Bar {
  int32 a = 1;
  int32 b = 2;
  int32 c = 3;
}
