Interface IPagedCollection<T>
Represents a paged collection of items of type T
.
Inherited Members
Namespace: Innovt.Core.Collections
Assembly: Innovt.Core.dll
Syntax
public interface IPagedCollection<T> : IPagedCollection
Type Parameters
Name | Description |
---|---|
T | The type of items in the collection. |
Remarks
This interface defines properties and methods for working with paged collections of items. It is commonly used to represent the result of paginated queries or data retrieval operations.
Properties
| Edit this page View SourceItems
Gets or sets the collection of items in the current page.
Declaration
IEnumerable<T> Items { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<T> |