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