mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 00:52:14 +00:00
15 lines
289 B
Protocol Buffer
15 lines
289 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
message CreateSelectOptionPayload {
|
||
|
CellIdentifierPayload cell_identifier = 1;
|
||
|
string option_name = 2;
|
||
|
}
|
||
|
message CellIdentifierPayload {
|
||
|
string grid_id = 1;
|
||
|
string field_id = 2;
|
||
|
string row_id = 3;
|
||
|
}
|
||
|
message SelectOptionName {
|
||
|
string name = 1;
|
||
|
}
|