Skip to content

Instantly share code, notes, and snippets.

@ksharma-xyz
Created July 6, 2024 11:33
Show Gist options
  • Save ksharma-xyz/cb1043d7767016814a632aaa8ae94f17 to your computer and use it in GitHub Desktop.
Save ksharma-xyz/cb1043d7767016814a632aaa8ae94f17 to your computer and use it in GitHub Desktop.
Protobuf for User
syntax = "proto3";
option java_package = "xyz.ksharma.user";
option java_outer_classname = "User";
message User {
string id = 1;
string name = 2;
int32 age = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment