Table of Contents

Class SavedCardLogListViewModel

Namespace
Dynamicweb.Ecommerce.Frontend.SavedCards
Assembly
Dynamicweb.Ecommerce.dll
public class SavedCardLogListViewModel : FillableViewModelBase
Inheritance
SavedCardLogListViewModel
Inherited Members

Properties

CurrentPage

Gets or sets the current page number.

public int CurrentPage { get; set; }

Property Value

int

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

SavedCardLogList

Gets or sets the saved cards log list.

public IList<SavedCardLogViewModel> SavedCardLogList { get; set; }

Property Value

IList<SavedCardLogViewModel>

TotalsavedCardLogsCount

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

public int TotalsavedCardLogsCount { get; set; }

Property Value

int
To top