Table of Contents

Class FavoriteListViewModel

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

Properties

Description

Gets or sets the favorite list description.
public string Description { get; set; }

Property Value

string

Id

Gets or sets the favorite list ID.
public int Id { get; set; }

Property Value

int

IsDefault

Gets or sets the value determines whether this favorite list is default.
public bool IsDefault { get; set; }

Property Value

bool

Name

Gets or sets the favorite list name.
public string Name { get; set; }

Property Value

string

ProductList

Gets or sets the favorite list products.
public ProductListViewModel ProductList { get; set; }

Property Value

ProductListViewModel

UserId

Gets or sets the access user ID.
public int UserId { get; set; }

Property Value

int
To top