Table of Contents

Class ProductEmailNotificationViewModel

Namespace
Dynamicweb.Ecommerce.Products.EmailNotifications
Assembly
Dynamicweb.Ecommerce.dll

Represents a view model for an ProductEmailNotification, containing related index query result.

public class ProductEmailNotificationViewModel : ViewModelBase
Inheritance
ProductEmailNotificationViewModel
Inherited Members

Properties

Host

Gets or sets solution host.

public string? Host { get; set; }

Property Value

string

Query

Gets or sets query model of the notification.

public ProductEmailNotificationQueryViewModel Query { get; set; }

Property Value

ProductEmailNotificationQueryViewModel

Title

Gets or sets title.

public string? Title { get; set; }

Property Value

string

UserEmail

Gets or sets notification recipient email.

public string UserEmail { get; set; }

Property Value

string

UserFirstName

Gets or sets notification recipient first name.

public string? UserFirstName { get; set; }

Property Value

string

UserLastName

Gets or sets notification recipient last name.

public string? UserLastName { get; set; }

Property Value

string

UserName

Gets or sets notification recipient user name.

public string? UserName { get; set; }

Property Value

string
To top