Created
July 6, 2024 11:33
-
-
Save ksharma-xyz/cb1043d7767016814a632aaa8ae94f17 to your computer and use it in GitHub Desktop.
Protobuf for User
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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