namespace Admin.NET.Core { public class PageResult { public int PageNo { get; set; } public int PageSize { get; set; } public int TotalPage { get; set; } public int TotalRows { get; set; } public ICollection Rows { get; set; } } }