using System.Collections.Generic;
using GxPress.Common.Page;
namespace GxPress.Request.App.Topic
{
///
/// 查询
///
public class TopicPageSearchRequest : PageParameter
{
///
/// 用户Id
///
public int UserId { get; set; }
///
///
///
public int ParentId { get; set; }
///
/// 搜索关键词
///
///
public string Keyword { get; set; }
///
/// 话题分组ID
///
public List TopicGroupIds { get; set; }
///
///
///
public TopicPageSearchRequest()
{
TopicGroupIds = new List();
}
///
/// 是否查询自己
///
///
public bool IsAdmin { get; set; }
}
}