12 lines
216 B
Protocol Buffer
Raw Normal View History

2022-03-16 21:19:51 +08:00
syntax = "proto3";
enum GridNotification {
Unknown = 0;
2022-04-03 22:22:54 +08:00
DidCreateBlock = 11;
DidUpdateGridRow = 20;
DidUpdateGridField = 21;
2022-04-05 22:46:23 +08:00
DidUpdateRow = 30;
DidUpdateCell = 40;
DidUpdateField = 50;
2022-03-16 21:19:51 +08:00
}