using GxPress.Common.Page;
namespace GxPress.Request.Comment
{
///
/// 评论分页
///
public class CommentSearchPageRequest : PageParameter
{
///
/// 文章Id
///
public int ArticleId { get; set; }
///
/// 状态 10 会议纪要 0 文章 1 话题 2 通知 3 笔记
///
///
public int TypeValue { get; set; }
///
/// 条数
///
///
public int Total { get; set; }
///
/// 当前用户ID
///
///
public int UserId { get; set; }
}
}