Class MenuChangeOptionValueInput
Input data transfer object for changing a menu option value.
Inherited Members
Namespace: Serenity.Menu.Application.DTO
Assembly: Serenity.Menu.Application.dll
Syntax
public class MenuChangeOptionValueInput
Constructors
MenuChangeOptionValueInput(string, string, UiOptionValue)
Initializes a new instance of the MenuChangeOptionValueInput class.
Declaration
public MenuChangeOptionValueInput(string menuId, string optionId, UiOptionValue value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | menuId | The ID of the menu to be changed. |
| string | optionId | The ID of the option to be changed. |
| UiOptionValue | value | The new value for the specified option. |
Fields
MenuId
Declaration
public string MenuId
Field Value
| Type | Description |
|---|---|
| string | The ID of the menu to be changed. |
OptionId
Declaration
public string OptionId
Field Value
| Type | Description |
|---|---|
| string | The ID of the option to be changed. |
Value
Declaration
public UiOptionValue Value
Field Value
| Type | Description |
|---|---|
| UiOptionValue | The new value for the specified option. |
Methods
ToString()
Returns a string representation of the MenuChangeOptionValueInput instance.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | A string representation of the instance. |