start module output
This commit is contained in:
@@ -23,6 +23,8 @@ namespace zero.Core.Entities
|
||||
{
|
||||
TotalPages = 1;
|
||||
}
|
||||
|
||||
HasMore = TotalPages > Page;
|
||||
}
|
||||
|
||||
public ListResult(IList<T> items, long totalItems, long pageNumber, long pageSize) : this(totalItems, pageNumber, pageSize)
|
||||
@@ -46,6 +48,8 @@ namespace zero.Core.Entities
|
||||
|
||||
public long TotalItems { get; private set; }
|
||||
|
||||
public bool HasMore { get; private set; }
|
||||
|
||||
public IList<T> Items { get; set; }
|
||||
|
||||
public List<PagedResultStatistic> Statistics { get; set; } = new List<PagedResultStatistic>();
|
||||
|
||||
Reference in New Issue
Block a user