Table of Contents

Class FavoriteProductViewModel

Namespace
Dynamicweb.Ecommerce.Frontend
Assembly
Dynamicweb.Ecommerce.dll
FavoriteProductViewModel represents the rendering context used when a favorite product is rendered.
public class FavoriteProductViewModel : FillableViewModelBase
Inheritance
FavoriteProductViewModel
Inherited Members

Properties

Id

Gets or sets the favorite product identifier.
public int Id { get; set; }

Property Value

int
The identifier.

Note

Gets or sets the note.
public string Note { get; set; }

Property Value

string
The note.

ProductId

Gets or sets the product identifier.
public string ProductId { get; set; }

Property Value

string
The product identifier.

ProductReferenceUrl

Gets or sets the product reference URL.
public string ProductReferenceUrl { get; set; }

Property Value

string
The product reference URL.

ProductVariantId

Gets or sets the product variant identifier.
public string ProductVariantId { get; set; }

Property Value

string
The product variant identifier.

Quantity

Gets or sets the quantity.
public int Quantity { get; set; }

Property Value

int
The quantity.

SortOrder

Gets or sets the sort order.
public int? SortOrder { get; set; }

Property Value

int?
The sort order.
To top