Class PagedResultDto<T>
Implements IPagedResult<T>.
Inherited Members
Namespace: Code.Library.Dtos
Assembly: Code.Library.dll
Syntax
[Serializable]
public class PagedResultDto<T> : ListResultDto<T>, IPagedResult<T>, IListResult<T>, IHasTotalCount
Type Parameters
Name | Description |
---|---|
T | Type of the items in the Items list |
Constructors
| Improve this Doc View SourcePagedResultDto()
Creates a new PagedResultDto<T> object.
Declaration
public PagedResultDto()
PagedResultDto(long, IReadOnlyList<T>)
Creates a new PagedResultDto<T> object.
Declaration
public PagedResultDto(long totalCount, IReadOnlyList<T> items)
Parameters
Type | Name | Description |
---|---|---|
long | totalCount | Total count of Items |
IRead |
items | List of items in current page |
Properties
| Improve this Doc View SourceTotalCount
Total count of Items.
Declaration
public long TotalCount { get; set; }
Property Value
Type | Description |
---|---|
long |