10 lines
141 B
Protocol Buffer
Raw Normal View History

2022-03-02 22:43:04 +08:00
syntax = "proto3";
enum GridEvent {
2022-03-06 21:22:42 +08:00
GetGridData = 0;
2022-03-17 17:25:43 +08:00
GetGridBlocks = 1;
2022-03-05 10:59:44 +08:00
GetFields = 2;
CreateRow = 3;
2022-03-10 12:01:31 +08:00
UpdateCell = 4;
2022-03-02 22:43:04 +08:00
}