Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPage.cs
1using System.Collections.Generic;
2
3namespace Waher.Persistence
4{
9 public interface IPage<T>
10 where T : class
11 {
15 IEnumerable<T> Items { get; }
16
20 bool More { get; }
21 }
22}
Interface for paginated results.
Definition: IPage.cs:11
IEnumerable< T > Items
Items available in the page. The enumeration may be empty.
Definition: IPage.cs:15
bool More
If there may be more pages following this page.
Definition: IPage.cs:20