123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models
- {
-
-
-
-
- internal class PageInfo<T>
- {
-
-
-
- public int TotalElements { get; set; }
-
-
-
- public int TotalPages { get; set; }
-
-
-
- public bool Last { get; set; }
-
-
-
- public bool First { get; set; }
-
-
-
- public int Number { get; set; }
-
-
-
- public int Size { get; set; }
-
-
-
- public int NumberOfElements { get; set; }
-
-
-
- public List<T> Content { get; set; }
- }
- }
|