Guest User

Untitled

a guest
Oct 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. using System.Collections.Specialized;
  2. namespace OurUmbraco.ViewModels
  3. {
  4. public class Pager
  5. {
  6. public string Next { get; set; }
  7. public string Previous { get; set; }
  8. public int TotalPages { get; set; }
  9. public int CurrentPage { get; set; }
  10. public int PageSize { get; set; }
  11. public int Total { get; set; }
  12. public NameValueCollection QueryString { get; set; }
  13. }
  14. }
Add Comment
Please, Sign In to add comment