選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

GeneralPagerParam.cs 259B

12345678910111213
  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. }