15 lines
289 B
Protocol Buffer
Raw Normal View History

2022-04-07 08:33:10 +08:00
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;
}