mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 22:57:12 -04:00
12 lines
272 B
Protocol Buffer
12 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;
|
|
}
|