Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EmptyPage.cs
1using System;
2using System.Collections.Generic;
3
4namespace Waher.Persistence
5{
10 public class EmptyPage<T> : IPage<T>
11 where T : class
12 {
16 public IEnumerable<T> Items => Array.Empty<T>();
17
21 public bool More => false;
22 }
23}
Represents an empty page of items.
Definition: EmptyPage.cs:12
IEnumerable< T > Items
Items available in the page. The enumeration may be empty.
Definition: EmptyPage.cs:16
bool More
If there may be more pages following this page.
Definition: EmptyPage.cs:21
Interface for paginated results.
Definition: IPage.cs:11