12 lines
209 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;
2022-04-05 22:46:23 +08:00
DidUpdateBlock = 20;
DidUpdateRow = 30;
2022-04-06 10:32:08 +08:00
DidUpdateCell = 31;
2022-04-07 08:33:10 +08:00
DidUpdateGrid = 40;
2022-04-03 22:22:54 +08:00
DidUpdateField = 41;
2022-03-16 21:19:51 +08:00
}