13 lines
272 B
Protocol Buffer
Raw Normal View History

2022-04-07 08:33:10 +08:00
syntax = "proto3";
2022-06-17 16:42:18 +08:00
import "field_entities.proto";
2022-04-07 08:33:10 +08:00
message CreateSelectOptionPayload {
FieldIdentifierPayload field_identifier = 1;
2022-04-07 08:33:10 +08:00
string option_name = 2;
}
message CellIdentifierPayload {
string grid_id = 1;
string field_id = 2;
string row_id = 3;
}