Class FavoriteListListViewModelSettings
- Namespace
- Dynamicweb.Ecommerce.Frontend
- Assembly
- Dynamicweb.Ecommerce.dll
public class FavoriteListListViewModelSettings : ViewSettingsBaseCurrencyBase<FavoriteListListViewModel>
- Inheritance
-
FavoriteListListViewModelSettings
- Inherited Members
Constructors
FavoriteListListViewModelSettings()
Empty constructor for webapi
public FavoriteListListViewModelSettings()
Properties
CurrentPage
The current page viewing Orders on.
The amount of pages can be calculated by calculating ( / PageSize) rounded up, as long as PageSize is greater than 0.
public int CurrentPage { get; set; }
Property Value
Remarks
Gets or sets the current page number.
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.
[JsonIgnore]
public int PageCount { get; set; }
Property Value
PageSize
The maximum amount of Orders in the response. To see more orders, change CurrentPage to another page.
If PageSize value is greater than 0, the view model result will be paginated, otherwise, plain list.
public int PageSize { get; set; }
Property Value
Remarks
Gets or sets the product count per page.
TotalFavoriteListsCount
Gets or sets the total number of favorite lists in the list.
[JsonIgnore]
public int TotalFavoriteListsCount { get; set; }