We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b4fac2 commit 13c7923Copy full SHA for 13c7923
1 file changed
Routine/Routine.APi/Helpers/PagedList.cs
@@ -44,7 +44,7 @@ public class PagedList<T> : List<T>
44
45
public PagedList(List<T> items,int count,int pageNumber,int pageSize)
46
{
47
- TotalPages = count;
+ TotalCount = count;
48
PageSize = pageSize;
49
CurrentPage = pageNumber;
50
TotalPages = (int)Math.Ceiling(count / (double)pageSize);
0 commit comments