using System; using System.Collections.Generic; using System.Text; using GxPress.Common.Page; namespace GxPress.Request.App.TopicComment { /// <summary> /// 评论分页 /// </summary> public class TopicCommentSearchPageRequest : PageParameter { /// <summary> /// 通知Id /// </summary> public int TopicId { get; set; } /// <summary> /// 条数 /// </summary> /// <value></value> public int Total { get; set; } } }