Table of Contents

Class SettingPresetValue

Namespace
Dynamicweb.SettingPresets
Assembly
Dynamicweb.Core.dll

The SettingPresetValue class represents actual preset setting object for specific preset

public class SettingPresetValue
Inheritance
SettingPresetValue
Inherited Members

Constructors

SettingPresetValue(int, string, string)

public SettingPresetValue(int presetId, string key, string value)

Parameters

presetId int
key string
value string

Properties

Key

Gets or sets the preset setting key

public string Key { get; set; }

Property Value

string

PresetId

Gets or sets the preset id

public int PresetId { get; set; }

Property Value

int

Value

Gets or sets the preset setting value

public string Value { get; set; }

Property Value

string
To top