We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
message Diagram { map<string, Book> books = 1; // book name -> Book message Book { string alias = 1; // alias map<string, Sheet> sheets = 2; // sheet name -> Sheet } message Sheet { string alias = 1; // alias Primary primary = 2; } message Primary { string book_name = 1; string sheet_name = 2; RelationType relation_type = 3; } enum RelationType { RELATION_TYPE_MERGER = 1; RELATION_TYPE_SCATTER = 2; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: