mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 09:01:21 +00:00
11 lines
205 B
Protocol Buffer
11 lines
205 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
enum GridNotification {
|
||
|
Unknown = 0;
|
||
|
GridDidCreateRows = 10;
|
||
|
GridDidDeleteRow = 11;
|
||
|
GridDidUpdateRows = 12;
|
||
|
GridDidUpdateCells = 20;
|
||
|
GridDidUpdateFields = 30;
|
||
|
}
|