Table of Contents

Class SettingPreset

Namespace
Dynamicweb.SettingPresets
Assembly
Dynamicweb.Core.dll

The class SettingPreset represents named preset entity

public class SettingPreset
Inheritance
SettingPreset
Inherited Members

Constructors

SettingPreset(string, string)

public SettingPreset(string name, string target)

Parameters

name string
target string

Properties

Id

Gets or sets the preset id

public int Id { get; set; }

Property Value

int

Name

Gets or sets the preset name

public string Name { get; set; }

Property Value

string

Target

Gets or sets the preset target.

public string Target { get; set; }

Property Value

string

UserIds

Gets or sets the userIds for the preset

public List<int> UserIds { get; set; }

Property Value

List<int>

Values

Gets the preset values.

public Dictionary<string, SettingPresetValue>? Values { get; }

Property Value

Dictionary<string, SettingPresetValue>
To top