mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
272 B
Protocol Buffer
13 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
import "field_entities.proto";
|
|
|
|
message CreateSelectOptionPayload {
|
|
FieldIdentifierPayload field_identifier = 1;
|
|
string option_name = 2;
|
|
}
|
|
message CellIdentifierPayload {
|
|
string grid_id = 1;
|
|
string field_id = 2;
|
|
string row_id = 3;
|
|
}
|