string rows

This commit is contained in:
Jeff Carr 2025-02-19 02:49:14 -06:00
parent a664750d1a
commit b304d01e0c
1 changed files with 9 additions and 6 deletions

View File

@ -17,7 +17,8 @@ message StringRow {
message IntRow {
Widget header = 1; //
repeated Widget widgets = 2; //
repeated int64 vals = 2; //
repeated Widget widgets = 3; //
}
message TimeRow {
@ -32,11 +33,13 @@ message BoolRow {
message Table { // `autogenpb:marshal`
string title = 1;
repeated string order = 2;
repeated StringRow StringRows = 3;
repeated IntRow IntRows = 4;
repeated TimeRow TimeRows = 5;
repeated BoolRow BoolRows = 6;
Widget window = 2; //
Widget grid = 3; //
repeated string order = 4;
repeated StringRow StringRows = 5;
repeated IntRow IntRows = 6;
repeated TimeRow TimeRows = 7;
repeated BoolRow BoolRows = 8;
}
message Tables { // `autogenpb:marshal`