diff options
-rw-r--r-- | protocol/udm.proto | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocol/udm.proto b/protocol/udm.proto index 05059b8..1a821b8 100644 --- a/protocol/udm.proto +++ b/protocol/udm.proto @@ -24,12 +24,14 @@ enum MODULE_UI_ELEMENT_TYPE { UI_INTEGER = 1; UI_PROGRESS_BAR = 2; UI_WINDOW = 3; + UI_GROUP = 4; } message module_ui_element_info { optional MODULE_UI_ELEMENT_TYPE type = 1 [default = UI_STRING]; - required string id = 2; //internal element id used to get element value - optional string name = 3 [default = "not set"]; + repeated module_ui_element_info children = 2; + required string id = 3; //internal element id used to get element value + optional string name = 4 [default = "not set"]; } message setting { |