Pager.cs 231 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CP.Admin
  6. {
  7. public class Pager<T>
  8. {
  9. public int total { set; get; }
  10. public List<T> rows { set; get; }
  11. }
  12. }