Skip to content

Instantly share code, notes, and snippets.

@sparkmylife
Created January 31, 2022 13:47
syntax = "proto3";
message Author {
string title = 1;
string author = 2;
string isbn13 = 3;
int32 page = 4;
oneof phone_oneof {
string home = 5;
string office = 6;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment