Table of Contents

Class ProductEmailNotificationQueryViewModel

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

Represents a view model notification query with results.

public class ProductEmailNotificationQueryViewModel : ViewModelBase
Inheritance
ProductEmailNotificationQueryViewModel
Inherited Members

Properties

Id

Gets or sets id of the query.

public Guid? Id { get; set; }

Property Value

Guid?

Name

Gets or sets name of the query.

public string? Name { get; set; }

Property Value

string

Results

Gets or sets the list of query result models based on index product documents.

public IList<ProductEmailNotificationQueryResultViewModel>? Results { get; }

Property Value

IList<ProductEmailNotificationQueryResultViewModel>

TotalCount

Gets or sets total result count of the query.

public int TotalCount { get; set; }

Property Value

int
To top