12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Common.Page;
- namespace GxPress.Request.App.TopicAnalyze
- {
- /// <summary>
- /// 话题点赞分页数据
- /// </summary>
- public class TopicPraisePageSearchRequest:PageParameter
- {
- /// <summary>
- /// 话题ID
- /// </summary>
- public int TopicId { get; set; }
- }
- }
|