Interface IPagingModel
- Namespace
- ToSic.Eav.DataSources
- Assembly
- ToSic.Eav.DataSources.dll
Model of paging information, as used by the Paging DataSource.
[WorkInProgressApi("v22")]
public interface IPagingModel : IModelFromEntity<PagingModel>, IModelFromEntity, IModelFromData
Properties
ItemCount
The total number of items in the source - not just the current page.
int ItemCount { get; }
Property Value
PageCount
The total number of pages - based on the page size and item count.
int PageCount { get; }
Property Value
PageNumber
The current page number - which page is currently shown.
[ContentTypeTitle]
int PageNumber { get; }
Property Value
PageSize
The page size - how many items are on a page.
int PageSize { get; }