Table of Contents

Class UserGroupViewModel

Namespace
Dynamicweb.Frontend
Assembly
Dynamicweb.dll

UserViewModel represents the rendering context used when a user group is rendered.

public class UserGroupViewModel : ViewModelBase
Inheritance
UserGroupViewModel
Derived
Inherited Members
Extension Methods

Properties

Address

Gets or sets the address (line 1).

public string? Address { get; set; }

Property Value

string

Address2

Gets or sets the address (line 2).

public string? Address2 { get; set; }

Property Value

string

City

Gets or sets the city name.

public string? City { get; set; }

Property Value

string

Country

Gets or sets the country.

public string? Country { get; set; }

Property Value

string

CustomFields

Gets the collection of custom field values associated with the entity.

public Dictionary<string, CustomFieldValueViewModel> CustomFields { get; }

Property Value

Dictionary<string, CustomFieldValueViewModel>

Remarks

The collection is returned as a dictionary where the key is the name of the custom field and the value is the corresponding custom field value. If no custom fields are present, an empty dictionary is returned.

CustomerNumber

Gets or sets the customer number.

public string? CustomerNumber { get; set; }

Property Value

string

EmailAddress

Gets or sets the email address for the group.

public string? EmailAddress { get; set; }

Property Value

string

GroupType

Gets or sets the system name of the group type.

public string? GroupType { get; set; }

Property Value

string

The system name of the group type, or null if not set.

Id

Gets or sets the identifier.

public int Id { get; set; }

Property Value

int

The identifier.

Image

Gets or sets the image.

public string? Image { get; set; }

Property Value

string

The image.

Name

Gets or sets the group name.

public string? Name { get; set; }

Property Value

string

The group name.

State

Gets or sets the state (region).

public string? State { get; set; }

Property Value

string

ZipCode

Gets or sets the zip code (postal code).

public string? ZipCode { get; set; }

Property Value

string

See Also

To top