Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 lines
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. }