您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
259B

  1. using System.Collections.Generic;
  2. using HealthMonitor.Util.QueryObjects;
  3. namespace HealthMonitor.Util.Models
  4. {
  5. public class GeneralPagerParam : GeneralParam
  6. {
  7. /// <summary>
  8. /// 分页方式
  9. /// </summary>
  10. public Paging? Pager { get; set; }
  11. }
  12. }