Table of Contents

Class LoyaltyPointListViewModel

Namespace
Dynamicweb.Ecommerce.Frontend.LoyaltyPoints
Assembly
Dynamicweb.Ecommerce.dll
public class LoyaltyPointListViewModel : FillableViewModelBase
Inheritance
LoyaltyPointListViewModel
Inherited Members

Properties

CurrentPage

Gets or sets the current page number.

public int CurrentPage { get; set; }

Property Value

int

LoyaltyPointList

Gets or sets the list of favorite lists.

public IList<LoyaltyPointViewModel> LoyaltyPointList { get; set; }

Property Value

IList<LoyaltyPointViewModel>

PageCount

Gets or sets the count of pages. If this value is greater than 0, the view model result will be paginated, otherwise, plain list.

public int PageCount { get; set; }

Property Value

int

PageSize

Gets or sets the items count per page.

public int PageSize { get; set; }

Property Value

int

TotalLoyaltyPointTransactionsCount

Gets or sets the total number of loyalty point transactions in the list.

public int TotalLoyaltyPointTransactionsCount { get; set; }

Property Value

int
To top