Class UnityGameSettingsGetBoolValueOutput
Unity-specific output DTO for boolean game setting values. Extends the base GameSettingsGetBoolValueOutput with Unity foundation integration for type-safe boolean game settings retrieval results.
Namespace: Serenity.GameSettings.InterfaceAdapters.DTO
Assembly: Serenity.UnityGlobal.InterfaceAdapters.dll
Syntax
public class UnityGameSettingsGetBoolValueOutput : GameSettingsGetBoolValueOutput
Constructors
UnityGameSettingsGetBoolValueOutput(string, bool)
Initializes a new instance of the UnityGameSettingsGetBoolValueOutput with boolean value.
Creates output data containing the setting ID and boolean value result.
Declaration
public UnityGameSettingsGetBoolValueOutput(string id, bool value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the boolean game setting |
| bool | value | Boolean value of the game setting |
UnityGameSettingsGetBoolValueOutput(string, string)
Initializes a new instance of the UnityGameSettingsGetBoolValueOutput with string value.
Creates output data containing the setting ID and string representation of boolean value.
Declaration
public UnityGameSettingsGetBoolValueOutput(string id, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the boolean game setting |
| string | value | String representation of the boolean value |