using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CP.Admin { public class Pager<T> { public int total { set; get; } public List<T> rows { set; get; } } }