Skip to content

Instantly share code, notes, and snippets.

@Se7soz
Created September 21, 2015 18:14
Show Gist options
  • Save Se7soz/e7505934bd9eb43ead1e to your computer and use it in GitHub Desktop.
Save Se7soz/e7505934bd9eb43ead1e to your computer and use it in GitHub Desktop.
Protocol buffer example
syntax = "proto2";
package model;
message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment