string rows
This commit is contained in:
parent
a664750d1a
commit
b304d01e0c
15
table.proto
15
table.proto
|
@ -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`
|
||||
|
|
Loading…
Reference in New Issue