gladyssann

model

Feb 2nd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5.  
  6. namespace FinalPaginationTask.Models
  7. {
  8. public class SortAndPage // used for sorting and paging
  9. {
  10. public string SortField{ get; set; }
  11. public string SortDirection { get; set; }
  12. public int PageSize { get; set; }
  13. public int PageCount { get; set; }
  14. public int StartPage { get; set; }
  15. public int LastPage { get; set; }
  16. public int CurrentPageIndex { get; set; }
  17. public Pager Pager { get; set; }
  18.  
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment