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

13 行
265 B

  1. using Learun.Util;
  2. namespace Learun.Application.WebApi
  3. {
  4. /// <summary>
  5. /// 分页请求参数
  6. /// </summary>
  7. public class ReqPageParam
  8. {
  9. public Pagination pagination { get; set; }
  10. public string queryJson { get; set; }
  11. }
  12. }