You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 line
393B

  1. namespace HealthMonitor.Util.Models
  2. {
  3. /// <summary>
  4. /// 分页
  5. /// </summary>
  6. /// <typeparam name="T"></typeparam>
  7. public class PageData<T>
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. public List<T> Rows { get; set; } = new List<T>();
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public long Totals { get; set; }
  17. }
  18. }