Skip to content

Instantly share code, notes, and snippets.

@JunqiangYang
Last active March 24, 2017 06:00
Show Gist options
  • Save JunqiangYang/c85898aabc902968a2c2a1df24a77eff to your computer and use it in GitHub Desktop.
Save JunqiangYang/c85898aabc902968a2c2a1df24a77eff to your computer and use it in GitHub Desktop.
protobuf
option java_package = "me.zhuliangliang.proto";
option java_outer_classname = "PersonModel";
message Person {
required int32 id = 1;
required string name = 2;
optional string email = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment