Class UnityGameSettingsSetStringValueInput
Unity-specific input DTO for setting string game setting values. Extends the base GameSettingsSetStringValueInput with Unity foundation integration for type-safe string game settings modification operations.
Namespace: Serenity.InterfaceAdapters.DTO
Assembly: Serenity.UnityGlobal.InterfaceAdapters.dll
Syntax
public class UnityGameSettingsSetStringValueInput : GameSettingsSetStringValueInput
Constructors
UnityGameSettingsSetStringValueInput(string, string)
Initializes a new instance of the UnityGameSettingsSetStringValueInput.
Creates input data for setting a string game setting value by ID.
Declaration
public UnityGameSettingsSetStringValueInput(string id, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the string game setting to modify |
| string | value | New string value to set for the game setting |