Interface IGameSettingsRepository
Repository interface for managing game settings data.
Namespace: Serenity.GameSettings.Application.Interfaces
Assembly: Serenity.Global.Application.dll
Syntax
public interface IGameSettingsRepository
Methods
GetValue(GetGameSettingsValueInput)
Gets the value of a game setting.
Declaration
GetGameSettingsValueOutput GetValue(GetGameSettingsValueInput input)
Parameters
| Type | Name | Description |
|---|---|---|
| GetGameSettingsValueInput | input | The input DTO containing the details for retrieving the game setting value. |
Returns
| Type | Description |
|---|---|
| GetGameSettingsValueOutput | The output DTO containing the retrieved game setting value. |
SetValue(SetGameSettingsValueInput)
Sets the value of a game setting.
Declaration
void SetValue(SetGameSettingsValueInput input)
Parameters
| Type | Name | Description |
|---|---|---|
| SetGameSettingsValueInput | input | The input DTO containing the details for setting the game setting value. |