testing tables
This commit is contained in:
parent
7134618aa8
commit
a664750d1a
11
table.proto
11
table.proto
|
@ -31,11 +31,12 @@ message BoolRow {
|
||||||
}
|
}
|
||||||
|
|
||||||
message Table { // `autogenpb:marshal`
|
message Table { // `autogenpb:marshal`
|
||||||
repeated string order = 1;
|
string title = 1;
|
||||||
repeated StringRow StringRows = 2;
|
repeated string order = 2;
|
||||||
repeated IntRow IntRows = 3;
|
repeated StringRow StringRows = 3;
|
||||||
repeated TimeRow TimeRows = 4;
|
repeated IntRow IntRows = 4;
|
||||||
repeated BoolRow BoolRows = 5;
|
repeated TimeRow TimeRows = 5;
|
||||||
|
repeated BoolRow BoolRows = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Tables { // `autogenpb:marshal`
|
message Tables { // `autogenpb:marshal`
|
||||||
|
|
Loading…
Reference in New Issue