summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-04 14:33:02 -0600
committerJeff Carr <[email protected]>2025-03-04 14:33:02 -0600
commit4a99fed1965fdf8f2e60769613bc597be83a6e5d (patch)
treedc309e19707806d1346ceef3f25d2d88ce21f58a
parent56559d9ee1fa955b6efff621c6aceba6fe3d508b (diff)
protobuf cleanup legal only because no one is using this yet
-rw-r--r--table.proto19
1 files changed, 9 insertions, 10 deletions
diff --git a/table.proto b/table.proto
index 862a3fb..70d5f45 100644
--- a/table.proto
+++ b/table.proto
@@ -32,16 +32,15 @@ message BoolRow {
}
message Table { // `autogenpb:marshal`
- string title = 1;
- Widget parent = 2;
- Widget grid = 3;
- repeated string order = 4;
- repeated StringRow StringRows = 5;
- repeated IntRow IntRows = 6;
- repeated TimeRow TimeRows = 7;
- repeated BoolRow BoolRows = 8;
- Widget window = 9; // deprecate this
- string uuid = 10;
+ string uuid = 1;
+ string title = 2;
+ Widget parent = 3;
+ Widget grid = 4;
+ repeated string order = 5;
+ repeated StringRow StringRows = 6;
+ repeated IntRow IntRows = 7;
+ repeated TimeRow TimeRows = 8;
+ repeated BoolRow BoolRows = 9;
}
message Tables { // `autogenpb:marshal`